Module Values.SenderContactSource

An object that contains the details of the sender-provided contact person for the EngagementInvitation.

Sourcetype nonrec t = {
  1. email : SenderContactEmail.t;
    (*

    The sender-provided contact's email address associated with the EngagementInvitation.

    *)
  2. firstName : Name.t option;
    (*

    The sender-provided contact's last name associated with the EngagementInvitation.

    *)
  3. lastName : Name.t option;
    (*

    The sender-provided contact's first name associated with the EngagementInvitation.

    *)
  4. businessTitle : JobTitle.t option;
    (*

    The sender-provided contact's title (job title or role) associated with the EngagementInvitation.

    *)
  5. phone : PhoneNumber.t option;
    (*

    The sender-provided contact's phone number associated with the EngagementInvitation.

    *)
}
Sourceval context_ : string
Sourceval make : ?firstName:??? -> ?lastName:??? -> ?businessTitle:??? -> ?phone:??? -> email:SenderContactEmail.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SenderContactEmail.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