/** * 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 { DocumentAttributesSchema } from './DocumentAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { DocumentRelationshipsSchema } from './DocumentRelationshipsSchema'; /** * * @export * @interface DocumentResourceSchema */ export interface DocumentResourceSchema { /** * * @type {DocumentResourceSchemaTypeEnum} * @memberof DocumentResourceSchema */ type: DocumentResourceSchemaTypeEnum; /** * 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 DocumentResourceSchema */ id: string; /** * * @type {DocumentAttributesSchema} * @memberof DocumentResourceSchema */ attributes: DocumentAttributesSchema; /** * * @type {DocumentRelationshipsSchema} * @memberof DocumentResourceSchema */ relationships?: DocumentRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof DocumentResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof DocumentResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const DocumentResourceSchemaTypeEnum: { readonly Documents: "documents"; }; export type DocumentResourceSchemaTypeEnum = typeof DocumentResourceSchemaTypeEnum[keyof typeof DocumentResourceSchemaTypeEnum]; /** * Check if a given object implements the DocumentResourceSchema interface. */ export declare function instanceOfDocumentResourceSchema(value: object): value is DocumentResourceSchema; export declare function DocumentResourceSchemaFromJSON(json: any): DocumentResourceSchema; export declare function DocumentResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentResourceSchema; export declare function DocumentResourceSchemaToJSON(json: any): DocumentResourceSchema; export declare function DocumentResourceSchemaToJSONTyped(value?: DocumentResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DocumentResourceSchema.d.ts.map