Package com.stripe.model.checkout
Class Session.CustomerDetails
- java.lang.Object
-
- com.stripe.model.StripeObject
-
- com.stripe.model.checkout.Session.CustomerDetails
-
- All Implemented Interfaces:
StripeObjectInterface
- Enclosing class:
- Session
public static class Session.CustomerDetails extends StripeObject
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSession.CustomerDetails.TaxID
-
Field Summary
-
Fields inherited from class com.stripe.model.StripeObject
PRETTY_PRINT_GSON
-
-
Constructor Summary
Constructors Constructor Description CustomerDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetEmail()The customer’s email at time of checkout.java.lang.StringgetTaxExempt()The customer’s tax exempt status at time of checkout.java.util.List<Session.CustomerDetails.TaxID>getTaxIds()The customer’s tax IDs at time of checkout.inthashCode()voidsetEmail(java.lang.String email)The customer’s email at time of checkout.voidsetTaxExempt(java.lang.String taxExempt)The customer’s tax exempt status at time of checkout.voidsetTaxIds(java.util.List<Session.CustomerDetails.TaxID> taxIds)The customer’s tax IDs at time of checkout.-
Methods inherited from class com.stripe.model.StripeObject
equals, getLastResponse, getRawJsonObject, setLastResponse, toJson, toString
-
-
-
-
Method Detail
-
getEmail
public java.lang.String getEmail()
The customer’s email at time of checkout.
-
getTaxExempt
public java.lang.String getTaxExempt()
The customer’s tax exempt status at time of checkout.One of
exempt,none, orreverse.
-
getTaxIds
public java.util.List<Session.CustomerDetails.TaxID> getTaxIds()
The customer’s tax IDs at time of checkout.
-
setEmail
public void setEmail(java.lang.String email)
The customer’s email at time of checkout.
-
setTaxExempt
public void setTaxExempt(java.lang.String taxExempt)
The customer’s tax exempt status at time of checkout.One of
exempt,none, orreverse.
-
setTaxIds
public void setTaxIds(java.util.List<Session.CustomerDetails.TaxID> taxIds)
The customer’s tax IDs at time of checkout.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-