/** * 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 { BriefAttributesSchema } from './BriefAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { BriefRelationshipsSchema } from './BriefRelationshipsSchema'; /** * * @export * @interface BriefResourceSchema */ export interface BriefResourceSchema { /** * * @type {BriefResourceSchemaTypeEnum} * @memberof BriefResourceSchema */ type: BriefResourceSchemaTypeEnum; /** * 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 BriefResourceSchema */ id: string; /** * * @type {BriefAttributesSchema} * @memberof BriefResourceSchema */ attributes: BriefAttributesSchema; /** * * @type {BriefRelationshipsSchema} * @memberof BriefResourceSchema */ relationships?: BriefRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof BriefResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof BriefResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const BriefResourceSchemaTypeEnum: { readonly Briefs: "briefs"; }; export type BriefResourceSchemaTypeEnum = typeof BriefResourceSchemaTypeEnum[keyof typeof BriefResourceSchemaTypeEnum]; /** * Check if a given object implements the BriefResourceSchema interface. */ export declare function instanceOfBriefResourceSchema(value: object): value is BriefResourceSchema; export declare function BriefResourceSchemaFromJSON(json: any): BriefResourceSchema; export declare function BriefResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BriefResourceSchema; export declare function BriefResourceSchemaToJSON(json: any): BriefResourceSchema; export declare function BriefResourceSchemaToJSONTyped(value?: BriefResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BriefResourceSchema.d.ts.map