/** * 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 { ResponseAttributesSchema } from './ResponseAttributesSchema'; import type { ResponseRelationshipsSchema } from './ResponseRelationshipsSchema'; /** * * @export * @interface ResponseResourceSchema */ export interface ResponseResourceSchema { /** * * @type {ResponseResourceSchemaTypeEnum} * @memberof ResponseResourceSchema */ type: ResponseResourceSchemaTypeEnum; /** * 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 ResponseResourceSchema */ id: string; /** * * @type {ResponseAttributesSchema} * @memberof ResponseResourceSchema */ attributes: ResponseAttributesSchema; /** * * @type {ResponseRelationshipsSchema} * @memberof ResponseResourceSchema */ relationships?: ResponseRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof ResponseResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ResponseResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const ResponseResourceSchemaTypeEnum: { readonly Responses: "responses"; }; export type ResponseResourceSchemaTypeEnum = typeof ResponseResourceSchemaTypeEnum[keyof typeof ResponseResourceSchemaTypeEnum]; /** * Check if a given object implements the ResponseResourceSchema interface. */ export declare function instanceOfResponseResourceSchema(value: object): value is ResponseResourceSchema; export declare function ResponseResourceSchemaFromJSON(json: any): ResponseResourceSchema; export declare function ResponseResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseResourceSchema; export declare function ResponseResourceSchemaToJSON(json: any): ResponseResourceSchema; export declare function ResponseResourceSchemaToJSONTyped(value?: ResponseResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResponseResourceSchema.d.ts.map