/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { SubmissionResourceSchema } from './SubmissionResourceSchema'; /** * * @export * @interface SubmissionSchema */ export interface SubmissionSchema { /** * * @type {SubmissionResourceSchema} * @memberof SubmissionSchema */ data?: SubmissionResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof SubmissionSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof SubmissionSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the SubmissionSchema interface. */ export declare function instanceOfSubmissionSchema(value: object): value is SubmissionSchema; export declare function SubmissionSchemaFromJSON(json: any): SubmissionSchema; export declare function SubmissionSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionSchema; export declare function SubmissionSchemaToJSON(json: any): SubmissionSchema; export declare function SubmissionSchemaToJSONTyped(value?: SubmissionSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SubmissionSchema.d.ts.map