/** * The certificate log for a customer. This is exposed in the URL's `$includes`. * @export * @class CertificateLogModel */ export declare class CertificateLogModel { /** * @type {number} * @memberof CertificateLogModel */ id?: number | undefined; /** * @type {number} * @memberof CertificateLogModel */ certificateId?: number | undefined; /** * @type {string} * @memberof CertificateLogModel */ account?: string | undefined; /** * @type {string} * @memberof CertificateLogModel */ entry?: string | undefined; /** * @type {Date} * @memberof CertificateLogModel */ created?: Date | undefined; }