/** * 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 { ReportRelationshipsSchema } from './ReportRelationshipsSchema'; import type { ReportAttributesSchema } from './ReportAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface ReportResourceSchema */ export interface ReportResourceSchema { /** * * @type {ReportResourceSchemaTypeEnum} * @memberof ReportResourceSchema */ type: ReportResourceSchemaTypeEnum; /** * 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 ReportResourceSchema */ id: string; /** * * @type {ReportAttributesSchema} * @memberof ReportResourceSchema */ attributes: ReportAttributesSchema; /** * * @type {ReportRelationshipsSchema} * @memberof ReportResourceSchema */ relationships?: ReportRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof ReportResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ReportResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const ReportResourceSchemaTypeEnum: { readonly Reports: "reports"; }; export type ReportResourceSchemaTypeEnum = typeof ReportResourceSchemaTypeEnum[keyof typeof ReportResourceSchemaTypeEnum]; /** * Check if a given object implements the ReportResourceSchema interface. */ export declare function instanceOfReportResourceSchema(value: object): value is ReportResourceSchema; export declare function ReportResourceSchemaFromJSON(json: any): ReportResourceSchema; export declare function ReportResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportResourceSchema; export declare function ReportResourceSchemaToJSON(json: any): ReportResourceSchema; export declare function ReportResourceSchemaToJSONTyped(value?: ReportResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ReportResourceSchema.d.ts.map