/** * An exemption reason defines why a certificate allows a customer to be exempt for purposes of tax calculation. For a full list of defined exemption reasons, please call the `ListCertificateExemptionReasons` API. * @export * @class ExemptionReasonModel */ export declare class ExemptionReasonModel { /** * @type {number} * @memberof ExemptionReasonModel */ id?: number | undefined; /** * @type {string} * @memberof ExemptionReasonModel */ name?: string | undefined; }