/** * A certificate attribute can be thought of as a feature or flag that is applied to a certificate. A single certificate can be linked to zero, one, or many certificate attributes. The full list of attributes can be obtained by calling the `ListCertificateAttributes` API. * @export * @class CertificateAttributeModel */ export declare class CertificateAttributeModel { /** * @type {number} * @memberof CertificateAttributeModel */ id?: number | undefined; /** * @type {string} * @memberof CertificateAttributeModel */ name?: string | undefined; /** * @type {string} * @memberof CertificateAttributeModel */ description?: string | undefined; /** * @type {boolean} * @memberof CertificateAttributeModel */ isSystemCode?: boolean | undefined; }