/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.16.2673
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { UserRoleAccount } from './userRole';
/**
 * Token validation result.
 */
export interface TokenValidationResultAccount {
    [key: string]: any | any;
    /**
     * Token status.
     */
    valid: boolean;
    /**
     * List of user roles.
     */
    roles: Array<UserRoleAccount>;
}
