/** * 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 { CreateEventRequestSchemaDataAttributes } from './CreateEventRequestSchemaDataAttributes'; /** * * @export * @interface CreateEventRequestSchemaData */ export interface CreateEventRequestSchemaData { /** * * @type {CreateEventRequestSchemaDataTypeEnum} * @memberof CreateEventRequestSchemaData */ type: CreateEventRequestSchemaDataTypeEnum; /** * * @type {CreateEventRequestSchemaDataAttributes} * @memberof CreateEventRequestSchemaData */ attributes: CreateEventRequestSchemaDataAttributes; } /** * @export */ export declare const CreateEventRequestSchemaDataTypeEnum: { readonly Events: "events"; }; export type CreateEventRequestSchemaDataTypeEnum = typeof CreateEventRequestSchemaDataTypeEnum[keyof typeof CreateEventRequestSchemaDataTypeEnum]; /** * Check if a given object implements the CreateEventRequestSchemaData interface. */ export declare function instanceOfCreateEventRequestSchemaData(value: object): value is CreateEventRequestSchemaData; export declare function CreateEventRequestSchemaDataFromJSON(json: any): CreateEventRequestSchemaData; export declare function CreateEventRequestSchemaDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateEventRequestSchemaData; export declare function CreateEventRequestSchemaDataToJSON(json: any): CreateEventRequestSchemaData; export declare function CreateEventRequestSchemaDataToJSONTyped(value?: CreateEventRequestSchemaData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateEventRequestSchemaData.d.ts.map