Module Values_1.PhoneNumberConfigSource

Configuration settings for phone type and phone number.

Sourcetype nonrec t = {
  1. channel : Values_0.Channel.t;
    (*

    The channel for this phone number configuration. Only VOICE is supported for this data type.

    *)
  2. phoneType : Values_0.PhoneType.t;
    (*

    The phone type. Valid values: SOFT_PHONE, DESK_PHONE.

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

    The phone number for the user's desk phone.

    *)
}
Sourceval context_ : string
Sourceval make : ?phoneNumber:??? -> channel:Values_0.Channel.t -> phoneType:Values_0.PhoneType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.SensitivePhoneNumber.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