/** * An account user who is permitted to use AvaTax. * @export * @class AccountLicenseKeyModel */ export declare class AccountLicenseKeyModel { /** * @type {string} * @memberof AccountLicenseKeyModel */ name: string; /** * @type {number} * @memberof AccountLicenseKeyModel */ accountId: number; /** * @type {Date} * @memberof AccountLicenseKeyModel */ createdDate?: Date | undefined; /** * @type {number} * @memberof AccountLicenseKeyModel */ createdUserId?: number | undefined; /** * @type {Date} * @memberof AccountLicenseKeyModel */ modifiedDate?: Date | undefined; /** * @type {number} * @memberof AccountLicenseKeyModel */ modifiedUserId?: number | undefined; }