/**
 * 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 { AttributeAccount } from './attribute';
/**
 * Account info update data.
 */
export interface InfoChangeRequestAccount {
    [key: string]: any | any;
    /**
     * User specification.
     */
    specification?: string | null;
    /**
     * User e-mail address.
     */
    email?: string | null;
    /**
     * User phone.
     */
    phone?: string | null;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributeAccount>;
}
