Module Values.ContactPreferenceSource

Object that defines users contact preference.

Sourcetype nonrec t = {
  1. keyName : Name.t option;
    (*

    A searchable, unique identifier of a customer profile.

    *)
  2. keyValue : String1To255.t option;
    (*

    The key value used to look up profile based off the keyName.

    *)
  3. profileId : Uuid.t option;
    (*

    The unique identifier of a customer profile.

    *)
  4. contactType : ContactType.t option;
    (*

    The contact type used for engagement. For example: HomePhoneNumber, PersonalEmailAddress.

    *)
}
Sourceval make : ?keyName:??? -> ?keyValue:??? -> ?profileId:??? -> ?contactType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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