import AccountApiKey from './AccountApiKey';
import BitmovinResource from './BitmovinResource';
import Marketplace from './Marketplace';
/**
 * @export
 * @class AccountInformation
 */
export declare class AccountInformation extends BitmovinResource {
    /**
     * Email address of the account. (required)
     * @type {string}
     * @memberof AccountInformation
     */
    email?: string;
    /**
     * ApiKeys associated with the account (required)
     * @type {AccountApiKey[]}
     * @memberof AccountInformation
     */
    apiKeys?: AccountApiKey[];
    /**
     * First name of the tenant.
     * @type {string}
     * @memberof AccountInformation
     */
    firstName?: string;
    /**
     * Last name of the tenant.
     * @type {string}
     * @memberof AccountInformation
     */
    lastName?: string;
    /**
     * Phone number of the tenant.
     * @type {string}
     * @memberof AccountInformation
     */
    phone?: string;
    /**
     * Company name of the tenant.
     * @type {string}
     * @memberof AccountInformation
     */
    company?: string;
    /**
     * @type {boolean}
     * @memberof AccountInformation
     */
    verified?: boolean;
    /**
     * @type {Marketplace}
     * @memberof AccountInformation
     */
    marketplace?: Marketplace;
    /**
     * @type {boolean}
     * @memberof AccountInformation
     */
    mfaEnabled?: boolean;
    /**
     * @type {string}
     * @memberof AccountInformation
     */
    intercomIdVerification?: string;
    /**
     * The Saml Domain of this Account
     * @type {string}
     * @memberof AccountInformation
     */
    samlDomain?: string;
    constructor(obj?: Partial<AccountInformation>);
}
export default AccountInformation;
