/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TenantAttributesSettingsSchemaMessagingCapabilities } from './TenantAttributesSettingsSchemaMessagingCapabilities'; /** * Optional dedicated SMS number (messaging slot). Absent = SMS rides the calling number. Outbound SMS prefers this number; it is never a voice caller-ID and never the virtual employee's phone. * @export * @interface TenantAttributesSettingsSchemaMessaging */ export interface TenantAttributesSettingsSchemaMessaging { /** * The dedicated SMS number (E.164) * @type {string} * @memberof TenantAttributesSettingsSchemaMessaging */ phoneNumber?: string; /** * * @type {TenantAttributesSettingsSchemaMessagingProviderEnum} * @memberof TenantAttributesSettingsSchemaMessaging */ provider?: TenantAttributesSettingsSchemaMessagingProviderEnum; /** * * @type {string} * @memberof TenantAttributesSettingsSchemaMessaging */ twilioPhoneSid?: string; /** * * @type {string} * @memberof TenantAttributesSettingsSchemaMessaging */ telnyxPhoneNumberId?: string; /** * * @type {boolean} * @memberof TenantAttributesSettingsSchemaMessaging */ enabled?: boolean; /** * * @type {TenantAttributesSettingsSchemaMessagingCapabilities} * @memberof TenantAttributesSettingsSchemaMessaging */ capabilities?: TenantAttributesSettingsSchemaMessagingCapabilities; } /** * @export */ export declare const TenantAttributesSettingsSchemaMessagingProviderEnum: { readonly Twilio: "twilio"; readonly Telnyx: "telnyx"; readonly External: "external"; }; export type TenantAttributesSettingsSchemaMessagingProviderEnum = typeof TenantAttributesSettingsSchemaMessagingProviderEnum[keyof typeof TenantAttributesSettingsSchemaMessagingProviderEnum]; /** * Check if a given object implements the TenantAttributesSettingsSchemaMessaging interface. */ export declare function instanceOfTenantAttributesSettingsSchemaMessaging(value: object): value is TenantAttributesSettingsSchemaMessaging; export declare function TenantAttributesSettingsSchemaMessagingFromJSON(json: any): TenantAttributesSettingsSchemaMessaging; export declare function TenantAttributesSettingsSchemaMessagingFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantAttributesSettingsSchemaMessaging; export declare function TenantAttributesSettingsSchemaMessagingToJSON(json: any): TenantAttributesSettingsSchemaMessaging; export declare function TenantAttributesSettingsSchemaMessagingToJSONTyped(value?: TenantAttributesSettingsSchemaMessaging | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantAttributesSettingsSchemaMessaging.d.ts.map