/** * 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 { OperationRelationshipsSchema } from './OperationRelationshipsSchema'; import type { OperationAttributesSchema } from './OperationAttributesSchema'; /** * * @export * @interface OperationResourceSchema */ export interface OperationResourceSchema { /** * * @type {OperationResourceSchemaTypeEnum} * @memberof OperationResourceSchema */ type: OperationResourceSchemaTypeEnum; /** * 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 OperationResourceSchema */ id: string; /** * * @type {OperationAttributesSchema} * @memberof OperationResourceSchema */ attributes: OperationAttributesSchema; /** * * @type {OperationRelationshipsSchema} * @memberof OperationResourceSchema */ relationships?: OperationRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof OperationResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof OperationResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const OperationResourceSchemaTypeEnum: { readonly Operations: "operations"; }; export type OperationResourceSchemaTypeEnum = typeof OperationResourceSchemaTypeEnum[keyof typeof OperationResourceSchemaTypeEnum]; /** * Check if a given object implements the OperationResourceSchema interface. */ export declare function instanceOfOperationResourceSchema(value: object): value is OperationResourceSchema; export declare function OperationResourceSchemaFromJSON(json: any): OperationResourceSchema; export declare function OperationResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperationResourceSchema; export declare function OperationResourceSchemaToJSON(json: any): OperationResourceSchema; export declare function OperationResourceSchemaToJSONTyped(value?: OperationResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OperationResourceSchema.d.ts.map