/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 AuthLoginEndpointRequest */ export interface AuthLoginEndpointRequest { /** * * @type {string} * @memberof AuthLoginEndpointRequest */ username: string; /** * * @type {string} * @memberof AuthLoginEndpointRequest */ password: string; /** * * @type {string} * @memberof AuthLoginEndpointRequest */ otp?: string | null; /** * * @type {string} * @memberof AuthLoginEndpointRequest */ newPassword?: string | null; } export declare function AuthLoginEndpointRequestFromJSON(json: any): AuthLoginEndpointRequest; export declare function AuthLoginEndpointRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthLoginEndpointRequest; export declare function AuthLoginEndpointRequestToJSON(value?: AuthLoginEndpointRequest | null): any;