/** * 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 { StateAttributesSchema } from './StateAttributesSchema'; /** * * @export * @interface StateResourceSchema */ export interface StateResourceSchema { /** * * @type {StateResourceSchemaTypeEnum} * @memberof StateResourceSchema */ type: StateResourceSchemaTypeEnum; /** * 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 StateResourceSchema */ id: string; /** * * @type {StateAttributesSchema} * @memberof StateResourceSchema */ attributes: StateAttributesSchema; /** * * @type {object} * @memberof StateResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof StateResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof StateResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const StateResourceSchemaTypeEnum: { readonly States: "states"; }; export type StateResourceSchemaTypeEnum = typeof StateResourceSchemaTypeEnum[keyof typeof StateResourceSchemaTypeEnum]; /** * Check if a given object implements the StateResourceSchema interface. */ export declare function instanceOfStateResourceSchema(value: object): value is StateResourceSchema; export declare function StateResourceSchemaFromJSON(json: any): StateResourceSchema; export declare function StateResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): StateResourceSchema; export declare function StateResourceSchemaToJSON(json: any): StateResourceSchema; export declare function StateResourceSchemaToJSONTyped(value?: StateResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StateResourceSchema.d.ts.map