Module Values.LeadContactSource

An object that contains a lead contact's details associated with the engagement. This provides contact information for individuals involved in lead-related activities.

Sourcetype nonrec t = {
  1. businessTitle : JobTitle.t;
    (*

    The lead contact's business title or job role associated with the engagement.

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

    The lead contact's email address associated with the engagement.

    *)
  3. firstName : Name.t;
    (*

    The lead contact's first name associated with the engagement.

    *)
  4. lastName : Name.t;
    (*

    The lead contact's last name associated with the engagement.

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

    The lead contact's phone number associated with the engagement.

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