/** * 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. */ /** * * @export * @interface SurveyQuestionOptionSchema */ export interface SurveyQuestionOptionSchema { /** * Stable lowercase slug (a-z, 0-9, -). What the recipient submits - locale-proof, never the label. * @type {string} * @memberof SurveyQuestionOptionSchema */ value?: string; /** * Locale map. en-US required to publish. * @type {{ [key: string]: string; }} * @memberof SurveyQuestionOptionSchema */ label?: { [key: string]: string; }; } /** * Check if a given object implements the SurveyQuestionOptionSchema interface. */ export declare function instanceOfSurveyQuestionOptionSchema(value: object): value is SurveyQuestionOptionSchema; export declare function SurveyQuestionOptionSchemaFromJSON(json: any): SurveyQuestionOptionSchema; export declare function SurveyQuestionOptionSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SurveyQuestionOptionSchema; export declare function SurveyQuestionOptionSchemaToJSON(json: any): SurveyQuestionOptionSchema; export declare function SurveyQuestionOptionSchemaToJSONTyped(value?: SurveyQuestionOptionSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SurveyQuestionOptionSchema.d.ts.map