/** * Represents a transaction/service type pair for telecommunications tax * @export * @class CommunicationsTSPairModel */ export declare class CommunicationsTSPairModel { /** * @type {number} * @memberof CommunicationsTSPairModel */ transactionTypeId: number; /** * @type {number} * @memberof CommunicationsTSPairModel */ serviceTypeId: number; /** * @type {string} * @memberof CommunicationsTSPairModel */ TransactionType?: string | undefined; /** * @type {string} * @memberof CommunicationsTSPairModel */ ServiceType?: string | undefined; /** * @type {string} * @memberof CommunicationsTSPairModel */ description?: string | undefined; /** * @type {string[]} * @memberof CommunicationsTSPairModel */ requiredParameters?: string[] | undefined; }