Module Values.PhoneNumberCapabilitiesSource

The phone number capabilities for Amazon Chime Business Calling phone numbers, such as enabled inbound and outbound calling and text messaging.

Sourcetype nonrec t = {
  1. inboundCall : NullableBoolean.t option;
    (*

    Allows or denies inbound calling for the specified phone number.

    *)
  2. outboundCall : NullableBoolean.t option;
    (*

    Allows or denies outbound calling for the specified phone number.

    *)
  3. inboundSMS : NullableBoolean.t option;
    (*

    Allows or denies inbound SMS messaging for the specified phone number.

    *)
  4. outboundSMS : NullableBoolean.t option;
    (*

    Allows or denies outbound SMS messaging for the specified phone number.

    *)
  5. inboundMMS : NullableBoolean.t option;
    (*

    Allows or denies inbound MMS messaging for the specified phone number.

    *)
  6. outboundMMS : NullableBoolean.t option;
    (*

    Allows or denies outbound MMS messaging for the specified phone number.

    *)
}
Sourceval make : ?inboundCall:??? -> ?outboundCall:??? -> ?inboundSMS:??? -> ?outboundSMS:??? -> ?inboundMMS:??? -> ?outboundMMS:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.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