/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 UpdateProfileDto */ export interface UpdateProfileDto { /** * The answers from a questionaire. * @type {{ [key: string]: string | null; }} * @memberof UpdateProfileDto */ answers?: { [key: string]: string | null; } | null; } /** * Check if a given object implements the UpdateProfileDto interface. */ export declare function instanceOfUpdateProfileDto(value: any): value is UpdateProfileDto; export declare function UpdateProfileDtoFromJSON(json: any): UpdateProfileDto; export declare function UpdateProfileDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateProfileDto; export declare function UpdateProfileDtoToJSON(value?: UpdateProfileDto | null, _ignoreDiscriminator?: boolean): any;