/** * Represents a license key for this account. * @export * @class LicenseKeyModel */ export declare class LicenseKeyModel { /** * @type {number} * @memberof LicenseKeyModel */ accountId?: number | undefined; /** * @type {string} * @memberof LicenseKeyModel */ privateLicenseKey?: string | undefined; /** * @type {string} * @memberof LicenseKeyModel */ httpRequestHeader?: string | undefined; }