Package com.stripe.model.issuing
Class MerchantData
- java.lang.Object
-
- com.stripe.model.StripeObject
-
- com.stripe.model.issuing.MerchantData
-
public class MerchantData extends StripeObject
-
-
Field Summary
-
Fields inherited from class com.stripe.model.StripeObject
PRETTY_PRINT_GSON
-
-
Constructor Summary
Constructors Constructor Description MerchantData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
java.lang.String
getCategory()
A categorization of the seller's type of business.java.lang.String
getCity()
City where the seller is located.java.lang.String
getCountry()
Country where the seller is located.java.lang.String
getName()
Name of the seller.java.lang.String
getNetworkId()
Identifier assigned to the seller by the card brand.java.lang.String
getPostalCode()
Postal code where the seller is located.java.lang.String
getState()
State where the seller is located.int
hashCode()
void
setCategory(java.lang.String category)
A categorization of the seller's type of business.void
setCity(java.lang.String city)
City where the seller is located.void
setCountry(java.lang.String country)
Country where the seller is located.void
setName(java.lang.String name)
Name of the seller.void
setNetworkId(java.lang.String networkId)
Identifier assigned to the seller by the card brand.void
setPostalCode(java.lang.String postalCode)
Postal code where the seller is located.void
setState(java.lang.String state)
State where the seller is located.-
Methods inherited from class com.stripe.model.StripeObject
equals, getLastResponse, getRawJsonObject, setLastResponse, toJson, toString
-
-
-
-
Method Detail
-
getCategory
public java.lang.String getCategory()
A categorization of the seller's type of business. See our [merchant categories guide](https://stripe.com/docs/issuing/merchant-categories) for a list of possible values.
-
getCity
public java.lang.String getCity()
City where the seller is located.
-
getCountry
public java.lang.String getCountry()
Country where the seller is located.
-
getName
public java.lang.String getName()
Name of the seller.
-
getNetworkId
public java.lang.String getNetworkId()
Identifier assigned to the seller by the card brand.
-
getPostalCode
public java.lang.String getPostalCode()
Postal code where the seller is located.
-
getState
public java.lang.String getState()
State where the seller is located.
-
setCategory
public void setCategory(java.lang.String category)
A categorization of the seller's type of business. See our [merchant categories guide](https://stripe.com/docs/issuing/merchant-categories) for a list of possible values.
-
setCity
public void setCity(java.lang.String city)
City where the seller is located.
-
setCountry
public void setCountry(java.lang.String country)
Country where the seller is located.
-
setName
public void setName(java.lang.String name)
Name of the seller.
-
setNetworkId
public void setNetworkId(java.lang.String networkId)
Identifier assigned to the seller by the card brand.
-
setPostalCode
public void setPostalCode(java.lang.String postalCode)
Postal code where the seller is located.
-
setState
public void setState(java.lang.String state)
State where the seller is located.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-