/** *

Settings that allow management of telephony permissions for an Amazon Chime user, such as inbound and outbound calling and text messaging.

*/ export interface _TelephonySettings { /** *

Allows or denies inbound calling.

*/ InboundCalling: boolean; /** *

Allows or denies outbound calling.

*/ OutboundCalling: boolean; /** *

Allows or denies SMS messaging.

*/ SMS: boolean; } export declare type _UnmarshalledTelephonySettings = _TelephonySettings;