/** * 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 { SurveyQuestionSchema } from './SurveyQuestionSchema'; /** * The questionnaire: a locale-keyed title plus an ordered question list. * @export * @interface SurveyContentSchema */ export interface SurveyContentSchema { /** * Locale map, e.g. {"en-US": "Your application experience", "pl-PL": "..."}. en-US is required to publish; clients render by locale prefix with en-US fallback. * @type {{ [key: string]: string; }} * @memberof SurveyContentSchema */ title?: { [key: string]: string; }; /** * * @type {Array} * @memberof SurveyContentSchema */ questions?: Array; } /** * Check if a given object implements the SurveyContentSchema interface. */ export declare function instanceOfSurveyContentSchema(value: object): value is SurveyContentSchema; export declare function SurveyContentSchemaFromJSON(json: any): SurveyContentSchema; export declare function SurveyContentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SurveyContentSchema; export declare function SurveyContentSchemaToJSON(json: any): SurveyContentSchema; export declare function SurveyContentSchemaToJSONTyped(value?: SurveyContentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SurveyContentSchema.d.ts.map