/** * Represents a request to activate an account by reading and accepting its terms and conditions. * @export * @class ActivateAccountModel */ export declare class ActivateAccountModel { /** * @type {boolean} * @memberof ActivateAccountModel */ acceptAvalaraTermsAndConditions?: boolean | undefined; /** * @type {boolean} * @memberof ActivateAccountModel */ haveReadAvalaraTermsAndConditions?: boolean | undefined; }