Module Values.AllianceLeadContactSource

Contains contact information for the primary alliance lead responsible for partnership activities.

Sourcetype nonrec t = {
  1. firstName : SensitiveUnicodeString.t;
    (*

    The first name of the alliance lead contact person.

    *)
  2. lastName : SensitiveUnicodeString.t;
    (*

    The last name of the alliance lead contact person.

    *)
  3. email : Email.t;
    (*

    The email address of the alliance lead contact person.

    *)
  4. businessTitle : SensitiveUnicodeString.t;
    (*

    The business title or role of the alliance lead contact person.

    *)
}
Sourceval context_ : string
Sourceval make : firstName:SensitiveUnicodeString.t -> lastName:SensitiveUnicodeString.t -> email:Email.t -> businessTitle:SensitiveUnicodeString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveUnicodeString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t