/** * 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'; /** * * @export * @interface ResourceSchema */ export interface ResourceSchema { /** * The "type" member is used to define the resource type. * The value of the "type" member must be a single word in its plural form. * The "type" member is required for identifying the type of resource object being represented in the API. * @type {string} * @memberof ResourceSchema */ type: string; /** * 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 ResourceSchema */ id: string; /** * * @type {object} * @memberof ResourceSchema */ attributes: object; /** * * @type {object} * @memberof ResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof ResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ResourceSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ResourceSchema interface. */ export declare function instanceOfResourceSchema(value: object): value is ResourceSchema; export declare function ResourceSchemaFromJSON(json: any): ResourceSchema; export declare function ResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceSchema; export declare function ResourceSchemaToJSON(json: any): ResourceSchema; export declare function ResourceSchemaToJSONTyped(value?: ResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResourceSchema.d.ts.map