/** * 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 { JobAttributesSettingsConversationEmailContactSchema } from './JobAttributesSettingsConversationEmailContactSchema'; import type { JobAttributesSettingsConversationEmailDelaysSchema } from './JobAttributesSettingsConversationEmailDelaysSchema'; /** * * @export * @interface JobAttributesSettingsConversationEmailSchema */ export interface JobAttributesSettingsConversationEmailSchema { /** * * @type {JobAttributesSettingsConversationEmailContactSchema} * @memberof JobAttributesSettingsConversationEmailSchema */ contact?: JobAttributesSettingsConversationEmailContactSchema; /** * * @type {JobAttributesSettingsConversationEmailDelaysSchema} * @memberof JobAttributesSettingsConversationEmailSchema */ delays?: JobAttributesSettingsConversationEmailDelaysSchema; /** * * @type {boolean} * @memberof JobAttributesSettingsConversationEmailSchema */ externalSender?: boolean; /** * * @type {boolean} * @memberof JobAttributesSettingsConversationEmailSchema */ isSendable?: boolean; } /** * Check if a given object implements the JobAttributesSettingsConversationEmailSchema interface. */ export declare function instanceOfJobAttributesSettingsConversationEmailSchema(value: object): value is JobAttributesSettingsConversationEmailSchema; export declare function JobAttributesSettingsConversationEmailSchemaFromJSON(json: any): JobAttributesSettingsConversationEmailSchema; export declare function JobAttributesSettingsConversationEmailSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesSettingsConversationEmailSchema; export declare function JobAttributesSettingsConversationEmailSchemaToJSON(json: any): JobAttributesSettingsConversationEmailSchema; export declare function JobAttributesSettingsConversationEmailSchemaToJSONTyped(value?: JobAttributesSettingsConversationEmailSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesSettingsConversationEmailSchema.d.ts.map