/** * 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 { SurveyResourceSchema } from './SurveyResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface SurveysSchema */ export interface SurveysSchema { /** * * @type {Array} * @memberof SurveysSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof SurveysSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof SurveysSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the SurveysSchema interface. */ export declare function instanceOfSurveysSchema(value: object): value is SurveysSchema; export declare function SurveysSchemaFromJSON(json: any): SurveysSchema; export declare function SurveysSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SurveysSchema; export declare function SurveysSchemaToJSON(json: any): SurveysSchema; export declare function SurveysSchemaToJSONTyped(value?: SurveysSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SurveysSchema.d.ts.map