/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { SubmissionResourceSchema } from './SubmissionResourceSchema'; /** * * @export * @interface SubmissionsSchema */ export interface SubmissionsSchema { /** * * @type {Array} * @memberof SubmissionsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof SubmissionsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof SubmissionsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the SubmissionsSchema interface. */ export declare function instanceOfSubmissionsSchema(value: object): value is SubmissionsSchema; export declare function SubmissionsSchemaFromJSON(json: any): SubmissionsSchema; export declare function SubmissionsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionsSchema; export declare function SubmissionsSchemaToJSON(json: any): SubmissionsSchema; export declare function SubmissionsSchemaToJSONTyped(value?: SubmissionsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SubmissionsSchema.d.ts.map