Package com.stripe.param
Class CustomerCreateParams
- java.lang.Object
-
- com.stripe.net.ApiRequestParams
-
- com.stripe.param.CustomerCreateParams
-
public class CustomerCreateParams extends ApiRequestParams
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCustomerCreateParams.Addressstatic classCustomerCreateParams.Builderstatic classCustomerCreateParams.InvoiceSettingsState, county, province, or region.static classCustomerCreateParams.ShippingThe value of the custom field.static classCustomerCreateParams.TaxState, county, province, or region.static classCustomerCreateParams.TaxExemptstatic classCustomerCreateParams.TaxIdDataA recent IP address of the customer used for tax reporting and tax location inference.-
Nested classes/interfaces inherited from class com.stripe.net.ApiRequestParams
ApiRequestParams.EnumParam
-
-
Field Summary
-
Fields inherited from class com.stripe.net.ApiRequestParams
EXTRA_PARAMS_KEY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomerCreateParams.Builderbuilder()java.lang.ObjectgetAddress()The customer's address.java.lang.LonggetBalance()An integer amount in %s that represents the customer's current balance, which affect the customer's future invoices.java.lang.StringgetCoupon()java.lang.StringgetDescription()An arbitrary string that you can attach to a customer object.java.lang.StringgetEmail()Customer's email address.java.util.List<java.lang.String>getExpand()Specifies which fields in the response should be expanded.java.util.Map<java.lang.String,java.lang.Object>getExtraParams()Map of extra parameters for custom features not available in this client library.java.lang.StringgetInvoicePrefix()The prefix for the customer used to generate unique invoice numbers.CustomerCreateParams.InvoiceSettingsgetInvoiceSettings()Default invoice settings for this customer.java.lang.ObjectgetMetadata()Set of key-value pairs that you can attach to an object.java.lang.StringgetName()The customer's full name or business name.java.lang.LonggetNextInvoiceSequence()The sequence to be used on the customer's next invoice.java.lang.StringgetPaymentMethod()java.lang.StringgetPhone()The customer's phone number.java.util.List<java.lang.String>getPreferredLocales()Customer's preferred languages, ordered by preference.java.lang.StringgetPromotionCode()The API ID of a promotion code to apply to the customer.java.lang.ObjectgetShipping()The customer's shipping information.java.lang.StringgetSource()CustomerCreateParams.TaxgetTax()Tax details about the customer.ApiRequestParams.EnumParamgetTaxExempt()The customer's tax exemption.java.util.List<CustomerCreateParams.TaxIdData>getTaxIdData()The customer's tax IDs.-
Methods inherited from class com.stripe.net.ApiRequestParams
toMap
-
-
-
-
Method Detail
-
builder
public static CustomerCreateParams.Builder builder()
-
getAddress
public java.lang.Object getAddress()
The customer's address.
-
getBalance
public java.lang.Long getBalance()
An integer amount in %s that represents the customer's current balance, which affect the customer's future invoices. A negative amount represents a credit that decreases the amount due on an invoice; a positive amount increases the amount due on an invoice.
-
getCoupon
public java.lang.String getCoupon()
-
getDescription
public java.lang.String getDescription()
An arbitrary string that you can attach to a customer object. It is displayed alongside the customer in the dashboard.
-
getEmail
public java.lang.String getEmail()
Customer's email address. It's displayed alongside the customer in your dashboard and can be useful for searching and tracking. This may be up to 512 characters.
-
getExpand
public java.util.List<java.lang.String> getExpand()
Specifies which fields in the response should be expanded.
-
getExtraParams
public java.util.Map<java.lang.String,java.lang.Object> getExtraParams()
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedNamevalue. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance.
-
getInvoicePrefix
public java.lang.String getInvoicePrefix()
The prefix for the customer used to generate unique invoice numbers. Must be 3–12 uppercase letters or numbers.
-
getInvoiceSettings
public CustomerCreateParams.InvoiceSettings getInvoiceSettings()
Default invoice settings for this customer.
-
getMetadata
public java.lang.Object getMetadata()
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value tometadata.
-
getName
public java.lang.String getName()
The customer's full name or business name.
-
getNextInvoiceSequence
public java.lang.Long getNextInvoiceSequence()
The sequence to be used on the customer's next invoice. Defaults to 1.
-
getPaymentMethod
public java.lang.String getPaymentMethod()
-
getPhone
public java.lang.String getPhone()
The customer's phone number.
-
getPreferredLocales
public java.util.List<java.lang.String> getPreferredLocales()
Customer's preferred languages, ordered by preference.
-
getPromotionCode
public java.lang.String getPromotionCode()
The API ID of a promotion code to apply to the customer. The customer will have a discount applied on all recurring payments. Charges you create through the API will not have the discount.
-
getShipping
public java.lang.Object getShipping()
The customer's shipping information. Appears on invoices emailed to this customer.
-
getSource
public java.lang.String getSource()
-
getTax
public CustomerCreateParams.Tax getTax()
Tax details about the customer.
-
getTaxExempt
public ApiRequestParams.EnumParam getTaxExempt()
The customer's tax exemption. One ofnone,exempt, orreverse.
-
getTaxIdData
public java.util.List<CustomerCreateParams.TaxIdData> getTaxIdData()
The customer's tax IDs.
-
-