import { CertificateModel } from "./CertificateModel"; /** * Indicates the customer's exemption status in a specific country and region. * @export * @class ExemptionStatusModel */ export declare class ExemptionStatusModel { /** * @type {string} * @memberof ExemptionStatusModel */ status?: string | undefined; /** * @type {CertificateModel} * @memberof ExemptionStatusModel */ certificate?: CertificateModel | undefined; }