@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
49 lines (48 loc) • 1.26 kB
TypeScript
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* 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 UserVerify
*/
export interface UserVerify {
/**
* The email of the user\'s account. Must be a valid email address. Must not be greater than 255 characters.
* @type {string}
* @memberof UserVerify
*/
email: string;
/**
* The security token of the account. Must not be greater than 255 characters.
* @type {string}
* @memberof UserVerify
*/
token: string;
/**
* The new user name to account. Must be at least 3 characters. Must not be greater than 255 characters.
* @type {string}
* @memberof UserVerify
*/
name: string;
/**
* The URL Slug of the account. Must not be greater than 255 characters.
* @type {string}
* @memberof UserVerify
*/
url_slug?: string;
/**
* The new password to account. Must be at least 8 characters.
* @type {string}
* @memberof UserVerify
*/
password: string;
}