/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { FeedbackResourceSchema } from './FeedbackResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface FeedbacksSchema */ export interface FeedbacksSchema { /** * * @type {Array} * @memberof FeedbacksSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof FeedbacksSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof FeedbacksSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the FeedbacksSchema interface. */ export declare function instanceOfFeedbacksSchema(value: object): value is FeedbacksSchema; export declare function FeedbacksSchemaFromJSON(json: any): FeedbacksSchema; export declare function FeedbacksSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeedbacksSchema; export declare function FeedbacksSchemaToJSON(json: any): FeedbacksSchema; export declare function FeedbacksSchemaToJSONTyped(value?: FeedbacksSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FeedbacksSchema.d.ts.map