Class TaxInfo
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.TaxInfo
-
- All Implemented Interfaces:
Serializable
public class TaxInfo extends Object implements Serializable
Customizes the payer experience during the approval process for the payment.- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TaxInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTaxId()
The customer's tax ID value.String
getTaxIdType()
The customer's tax ID type.void
setTaxId(String taxId)
The customer's tax ID value.void
setTaxIdType(String taxIdType)
The customer's tax ID type.
-
-
-
Method Detail
-
setTaxId
public void setTaxId(String taxId)
The customer's tax ID value.
-
setTaxIdType
public void setTaxIdType(String taxIdType)
The customer's tax ID type. The possible values are:- BR_CPF. The individual tax ID type, typically is 11 characters long.
- BR_CNPJ. The business tax ID type, typically is 14 characters long.
-
getTaxId
public String getTaxId()
The customer's tax ID value.
-
getTaxIdType
public String getTaxIdType()
The customer's tax ID type. The possible values are:- BR_CPF. The individual tax ID type, typically is 11 characters long.
- BR_CNPJ. The business tax ID type, typically is 14 characters long.
-
-