Module Values.ContactSource

An object that contains a Customer Partner's contact details.

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

    The contact's email address associated with the Opportunity.

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

    The contact's first name associated with the Opportunity.

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

    The contact's last name associated with the Opportunity.

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

    The partner contact's title (job title or role) associated with the Opportunity. BusinessTitle supports either PartnerAccountManager or OpportunityOwner.

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

    The contact's phone number associated with the Opportunity.

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