Module Values_2.PhoneNumberSummarySource

Contains summary information about a phone number for a contact center.

Sourcetype nonrec t = {
  1. id : Values_0.PhoneNumberId.t option;
    (*

    The identifier of the phone number.

    *)
  2. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the phone number.

    *)
  3. phoneNumber : Values_0.PhoneNumber.t option;
    (*

    The phone number.

    *)
  4. phoneNumberType : Values_0.PhoneNumberType.t option;
    (*

    The type of phone number.

    *)
  5. phoneNumberCountryCode : Values_0.PhoneNumberCountryCode.t option;
    (*

    The ISO country code.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?phoneNumber:??? -> ?phoneNumberType:??? -> ?phoneNumberCountryCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.PhoneNumberId.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