module Organizations:sig..end
type t = {
|
department : |
(* |
The department within the organization. Deprecated.
| *) |
|
description : |
(* |
A short description of the person's role in this organization. Deprecated.
| *) |
|
endDate : |
(* |
The date that the person left this organization.
| *) |
|
location : |
(* |
The location of this organization. Deprecated.
| *) |
|
name : |
(* |
The name of the organization.
| *) |
|
primary : |
(* |
If "true", indicates this organization is the person's primary one, which is typically interpreted as the current one.
| *) |
|
startDate : |
(* |
The date that the person joined this organization.
| *) |
|
title : |
(* |
The person's job title or role within the organization.
| *) |
|
_type : |
(* |
The type of organization. Possible values include, but are not limited to, the following values:
| *) |
val department : (t, string) GapiLens.t
val description : (t, string) GapiLens.t
val endDate : (t, string) GapiLens.t
val location : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val primary : (t, bool) GapiLens.t
val startDate : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val _type : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t