package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. department : string;
    (*

    The department within the organization. Deprecated.

    *)
  2. description : string;
    (*

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

    *)
  3. endDate : string;
    (*

    The date that the person left this organization.

    *)
  4. location : string;
    (*

    The location of this organization. Deprecated.

    *)
  5. name : string;
    (*

    The name of the organization.

    *)
  6. primary : bool;
    (*

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

    *)
  7. startDate : string;
    (*

    The date that the person joined this organization.

    *)
  8. title : string;
    (*

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

    *)
  9. _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