Module Values.ContactSource

Represents contact information for a partner representative.

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

    The email address of the contact person.

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

    The first name of the contact person.

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

    The last name of the contact person.

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

    The business title or role of the contact person within the organization.

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

    The phone number of the contact person.

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