import { CommunicationLocationResponse } from "./CommunicationLocationResponse"; import { CommunicationExemptionDesignatorResponse } from "./CommunicationExemptionDesignatorResponse"; /** * Encloses communication tax type details * @export * @class CommunicationTaxTypeResponse */ export declare class CommunicationTaxTypeResponse { /** * @type {CommunicationLocationResponse} * @memberof CommunicationTaxTypeResponse */ location?: CommunicationLocationResponse | undefined; /** * @type {CommunicationExemptionDesignatorResponse} * @memberof CommunicationTaxTypeResponse */ exemptionDesignator?: CommunicationExemptionDesignatorResponse | undefined; /** * @type {string[]} * @memberof CommunicationTaxTypeResponse */ scope?: string[] | undefined; /** * @type {string} * @memberof CommunicationTaxTypeResponse */ domain?: string | undefined; }