/** * 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 { ChatRelationshipsScheduleDataSchema } from './ChatRelationshipsScheduleDataSchema'; /** * Schedule row armed for this chat's outbound dispatch. 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 chat resource - the eventbus reflects those changes onto the Schedule row, never the other way around. * @export * @interface ChatRelationshipsScheduleSchema */ export interface ChatRelationshipsScheduleSchema { /** * * @type {ChatRelationshipsScheduleDataSchema} * @memberof ChatRelationshipsScheduleSchema */ data?: ChatRelationshipsScheduleDataSchema | null; } /** * Check if a given object implements the ChatRelationshipsScheduleSchema interface. */ export declare function instanceOfChatRelationshipsScheduleSchema(value: object): value is ChatRelationshipsScheduleSchema; export declare function ChatRelationshipsScheduleSchemaFromJSON(json: any): ChatRelationshipsScheduleSchema; export declare function ChatRelationshipsScheduleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsScheduleSchema; export declare function ChatRelationshipsScheduleSchemaToJSON(json: any): ChatRelationshipsScheduleSchema; export declare function ChatRelationshipsScheduleSchemaToJSONTyped(value?: ChatRelationshipsScheduleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatRelationshipsScheduleSchema.d.ts.map