/** * Represents information about a newly created account * @export * @class NewAccountModel */ export declare class NewAccountModel { /** * @type {number} * @memberof NewAccountModel */ accountId?: number | undefined; /** * @type {string} * @memberof NewAccountModel */ accountDetailsEmailedTo?: string | undefined; /** * @type {Date} * @memberof NewAccountModel */ createdDate?: Date | undefined; /** * @type {Date} * @memberof NewAccountModel */ emailedDate?: Date | undefined; /** * @type {string} * @memberof NewAccountModel */ limitations?: string | undefined; /** * @type {string} * @memberof NewAccountModel */ licenseKey?: string | undefined; /** * @type {string} * @memberof NewAccountModel */ paymentUrl?: string | undefined; }