/** * 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 { EmailRelationshipsScheduleDataSchema } from './EmailRelationshipsScheduleDataSchema'; /** * The Schedule arming this email's delayed send. Denormalised mirror of scheduleId so clients can `?include=schedule` in a single request. Populated by the email eventbus handler reacting to SCHEDULE_CREATED. Null while the email is draft / already-sent / inbound. * @export * @interface EmailRelationshipsScheduleSchema */ export interface EmailRelationshipsScheduleSchema { /** * * @type {EmailRelationshipsScheduleDataSchema} * @memberof EmailRelationshipsScheduleSchema */ data?: EmailRelationshipsScheduleDataSchema | null; } /** * Check if a given object implements the EmailRelationshipsScheduleSchema interface. */ export declare function instanceOfEmailRelationshipsScheduleSchema(value: object): value is EmailRelationshipsScheduleSchema; export declare function EmailRelationshipsScheduleSchemaFromJSON(json: any): EmailRelationshipsScheduleSchema; export declare function EmailRelationshipsScheduleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailRelationshipsScheduleSchema; export declare function EmailRelationshipsScheduleSchemaToJSON(json: any): EmailRelationshipsScheduleSchema; export declare function EmailRelationshipsScheduleSchemaToJSONTyped(value?: EmailRelationshipsScheduleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailRelationshipsScheduleSchema.d.ts.map