Module Person.Organizations

type t = {
department : string;(*

The department within the organization. Deprecated.

*)
description : string;(*

A short description of the person's role in this organization. Deprecated.

*)
endDate : string;(*

The date that the person left this organization.

*)
location : string;(*

The location of this organization. Deprecated.

*)
name : string;(*

The name of the organization.

*)
primary : bool;(*

If "true", indicates this organization is the person's primary one, which is typically interpreted as the current one.

*)
startDate : string;(*

The date that the person joined this organization.

*)
title : string;(*

The person's job title or role within the organization.

*)
_type : string;(*

The type of organization. Possible values include, but are not limited to, the following values:

  • "work" - Work.
  • "school" - School.
*)
}
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