/** * 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 { CallRelationshipsScheduleDataSchema } from './CallRelationshipsScheduleDataSchema'; /** * Schedule row armed for this call's outbound dial. Set when scheduledFireAt is populated; null on inbound rows or on outbound rows that bypass the review window. Operators reschedule/cancel via PATCH/DELETE on the call resource - the eventbus reflects those changes onto the Schedule row, never the other way around. * @export * @interface CallRelationshipsScheduleSchema */ export interface CallRelationshipsScheduleSchema { /** * * @type {CallRelationshipsScheduleDataSchema} * @memberof CallRelationshipsScheduleSchema */ data?: CallRelationshipsScheduleDataSchema | null; } /** * Check if a given object implements the CallRelationshipsScheduleSchema interface. */ export declare function instanceOfCallRelationshipsScheduleSchema(value: object): value is CallRelationshipsScheduleSchema; export declare function CallRelationshipsScheduleSchemaFromJSON(json: any): CallRelationshipsScheduleSchema; export declare function CallRelationshipsScheduleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsScheduleSchema; export declare function CallRelationshipsScheduleSchemaToJSON(json: any): CallRelationshipsScheduleSchema; export declare function CallRelationshipsScheduleSchemaToJSONTyped(value?: CallRelationshipsScheduleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsScheduleSchema.d.ts.map