Module Values.AccountDetailsSource

An object that contains information about your account details.

Sourcetype nonrec t = {
  1. mailType : MailType.t option;
    (*

    The type of email your account is sending. The mail type can be one of the following: MARKETING – Most of your sending traffic is to keep your customers informed of your latest offering. TRANSACTIONAL – Most of your sending traffic is to communicate during a transaction with a customer.

    *)
  2. websiteURL : WebsiteURL.t option;
    (*

    The URL of your website. This information helps us better understand the type of content that you plan to send.

    *)
  3. contactLanguage : ContactLanguage.t option;
    (*

    The language you would prefer for the case. The contact language can be one of ENGLISH or JAPANESE.

    *)
  4. useCaseDescription : UseCaseDescription.t option;
    (*

    A description of the types of email that you plan to send.

    *)
  5. additionalContactEmailAddresses : AdditionalContactEmailAddresses.t option;
    (*

    Additional email addresses where updates are sent about your account review process.

    *)
  6. reviewDetails : ReviewDetails.t option;
    (*

    Information about the review of the latest details you submitted.

    *)
}
Sourceval make : ?mailType:??? -> ?websiteURL:??? -> ?contactLanguage:??? -> ?useCaseDescription:??? -> ?additionalContactEmailAddresses:??? -> ?reviewDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AdditionalContactEmailAddress.t ] list | `String of WebsiteURL.t | `Structure of (string * [> `Enum of string | `String of CaseId.t ]) list ]) 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