/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
/**
 * Token obtaining data.
 */
export interface TokenRequestAccount {
    [key: string]: any | any;
    /**
     * Unique username for login.
     */
    username: string;
    /**
     * Password.
     */
    password: string | null;
    /**
     * Token validity time, in seconds.
     */
    ttl_seconds?: number;
}
