E-Payment Integrator 2020 C++ Edition

Questions / Feedback?

TaxExempt Property

Specifies the tax exempt status of the transaction.

Syntax

ANSI (Cross Platform)
int GetTaxExempt();
int SetTaxExempt(int iTaxExempt); Unicode (Windows) INT GetTaxExempt();
INT SetTaxExempt(INT iTaxExempt);

Possible Values

TE_NOT_PROVIDED(0), 
TE_TRUE(1),
TE_FALSE(2)
@property (nonatomic,readwrite,assign,getter=taxExempt,setter=setTaxExempt:) int taxExempt;
- (int)taxExempt;
- (void)setTaxExempt:(int)newTaxExempt;

Possible Values

TE_NOT_PROVIDED(0), 
TE_TRUE(1),
TE_FALSE(2)
#define PID_LEVEL2_TAXEXEMPT 10

INPAY_EXTERNAL void* INPAY_CALL InPay_Level2_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INPAY_EXTERNAL int INPAY_CALL InPay_Level2_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

This property is used to specify whether the transaction is tax exempt.

The available values are:

  • teNotProvided (0) (default)
  • teTrue (1)
  • teFalse (2)

Data Type

Integer

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 C++ Edition - Version 20.0 [Build 7941]