/** * 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 { FileAttributesSchema } from './FileAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { FileRelationshipsSchema } from './FileRelationshipsSchema'; /** * * @export * @interface FileResourceSchema */ export interface FileResourceSchema { /** * * @type {FileResourceSchemaTypeEnum} * @memberof FileResourceSchema */ type: FileResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof FileResourceSchema */ id: string; /** * * @type {FileAttributesSchema} * @memberof FileResourceSchema */ attributes: FileAttributesSchema; /** * * @type {FileRelationshipsSchema} * @memberof FileResourceSchema */ relationships?: FileRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof FileResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FileResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const FileResourceSchemaTypeEnum: { readonly Files: "files"; }; export type FileResourceSchemaTypeEnum = typeof FileResourceSchemaTypeEnum[keyof typeof FileResourceSchemaTypeEnum]; /** * Check if a given object implements the FileResourceSchema interface. */ export declare function instanceOfFileResourceSchema(value: object): value is FileResourceSchema; export declare function FileResourceSchemaFromJSON(json: any): FileResourceSchema; export declare function FileResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileResourceSchema; export declare function FileResourceSchemaToJSON(json: any): FileResourceSchema; export declare function FileResourceSchemaToJSONTyped(value?: FileResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FileResourceSchema.d.ts.map