/** * 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 { FeedbackAttributesSchema } from './FeedbackAttributesSchema'; import type { FeedbackRelationshipsSchema } from './FeedbackRelationshipsSchema'; /** * * @export * @interface FeedbackResourceSchema */ export interface FeedbackResourceSchema { /** * * @type {FeedbackResourceSchemaTypeEnum} * @memberof FeedbackResourceSchema */ type: FeedbackResourceSchemaTypeEnum; /** * 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 FeedbackResourceSchema */ id: string; /** * * @type {FeedbackAttributesSchema} * @memberof FeedbackResourceSchema */ attributes: FeedbackAttributesSchema; /** * * @type {FeedbackRelationshipsSchema} * @memberof FeedbackResourceSchema */ relationships?: FeedbackRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof FeedbackResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FeedbackResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const FeedbackResourceSchemaTypeEnum: { readonly Feedbacks: "feedbacks"; }; export type FeedbackResourceSchemaTypeEnum = typeof FeedbackResourceSchemaTypeEnum[keyof typeof FeedbackResourceSchemaTypeEnum]; /** * Check if a given object implements the FeedbackResourceSchema interface. */ export declare function instanceOfFeedbackResourceSchema(value: object): value is FeedbackResourceSchema; export declare function FeedbackResourceSchemaFromJSON(json: any): FeedbackResourceSchema; export declare function FeedbackResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedbackResourceSchema; export declare function FeedbackResourceSchemaToJSON(json: any): FeedbackResourceSchema; export declare function FeedbackResourceSchemaToJSONTyped(value?: FeedbackResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedbackResourceSchema.d.ts.map