Module Values.WabaPhoneNumberSetupFinalizationSource

The registration details for a linked phone number.

Sourcetype nonrec t = {
  1. id : WhatsAppPhoneNumber.t;
    (*

    The unique identifier of the originating phone number associated with the media. Phone number identifiers are formatted as phone-number-id-01234567890123456789012345678901. Use the GetLinkedWhatsAppBusinessAccount API action to find a phone number's id.

    *)
  2. twoFactorPin : TwoFactorPin.t;
    (*

    The PIN to use for two-step verification. To reset your PIN follow the directions in Updating PIN in the WhatsApp Business Platform Cloud API Reference.

    *)
  3. dataLocalizationRegion : IsoCountryCode.t option;
    (*

    The two letter ISO region for the location of where Meta will store data. Asia–Pacific (APAC) Australia AU Indonesia ID India IN Japan JP Singapore SG South Korea KR Europe Germany DE Switzerland CH United Kingdom GB Latin America (LATAM) Brazil BR Middle East and Africa (MEA) Bahrain BH South Africa ZA United Arab Emirates AE North America (NORAM) Canada CA

    *)
  4. tags : TagList.t option;
    (*

    An array of key and value pair tags.

    *)
}
Sourceval context_ : string
Sourceval make : ?dataLocalizationRegion:??? -> ?tags:??? -> id:WhatsAppPhoneNumber.t -> twoFactorPin:TwoFactorPin.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKeyString.t ]) list ] list | `String of WhatsAppPhoneNumber.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