/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.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 UserFieldsCheckResponse */ export interface UserFieldsCheckResponse { /** * Name of the user field that was checked * @type {string} * @memberof UserFieldsCheckResponse */ field: string; /** * Value that was checked for availability * @type {string} * @memberof UserFieldsCheckResponse */ value: string; /** * Whether the checked field value is available for use * @type {boolean} * @memberof UserFieldsCheckResponse */ available: boolean; } export declare function UserFieldsCheckResponseFromJSON(json: any): UserFieldsCheckResponse; export declare function UserFieldsCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserFieldsCheckResponse; export declare function UserFieldsCheckResponseToJSON(value?: UserFieldsCheckResponse | null): any;