/** * 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 { NoteAttributesSchema } from './NoteAttributesSchema'; import type { NoteRelationshipsSchema } from './NoteRelationshipsSchema'; /** * * @export * @interface NoteResourceSchema */ export interface NoteResourceSchema { /** * * @type {NoteResourceSchemaTypeEnum} * @memberof NoteResourceSchema */ type: NoteResourceSchemaTypeEnum; /** * 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 NoteResourceSchema */ id: string; /** * * @type {NoteAttributesSchema} * @memberof NoteResourceSchema */ attributes: NoteAttributesSchema; /** * * @type {NoteRelationshipsSchema} * @memberof NoteResourceSchema */ relationships?: NoteRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof NoteResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof NoteResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const NoteResourceSchemaTypeEnum: { readonly Notes: "notes"; }; export type NoteResourceSchemaTypeEnum = typeof NoteResourceSchemaTypeEnum[keyof typeof NoteResourceSchemaTypeEnum]; /** * Check if a given object implements the NoteResourceSchema interface. */ export declare function instanceOfNoteResourceSchema(value: object): value is NoteResourceSchema; export declare function NoteResourceSchemaFromJSON(json: any): NoteResourceSchema; export declare function NoteResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoteResourceSchema; export declare function NoteResourceSchemaToJSON(json: any): NoteResourceSchema; export declare function NoteResourceSchemaToJSONTyped(value?: NoteResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NoteResourceSchema.d.ts.map