Package com.stripe.param.billingportal
Class ConfigurationCreateParams.Builder
- java.lang.Object
-
- com.stripe.param.billingportal.ConfigurationCreateParams.Builder
-
- Enclosing class:
- ConfigurationCreateParams
public static class ConfigurationCreateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigurationCreateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.ConfigurationCreateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.ConfigurationCreateParamsbuild()Finalize and obtain parameter instance from this builder.ConfigurationCreateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.ConfigurationCreateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.ConfigurationCreateParams.BuildersetBusinessProfile(ConfigurationCreateParams.BusinessProfile businessProfile)The business information shown to customers in the portal.ConfigurationCreateParams.BuildersetDefaultReturnUrl(EmptyParam defaultReturnUrl)The default URL to redirect customers to when they click on the portal's link to return to your website.ConfigurationCreateParams.BuildersetDefaultReturnUrl(java.lang.String defaultReturnUrl)The default URL to redirect customers to when they click on the portal's link to return to your website.ConfigurationCreateParams.BuildersetFeatures(ConfigurationCreateParams.Features features)Information about the features available in the portal.
-
-
-
Method Detail
-
build
public ConfigurationCreateParams build()
Finalize and obtain parameter instance from this builder.
-
setBusinessProfile
public ConfigurationCreateParams.Builder setBusinessProfile(ConfigurationCreateParams.BusinessProfile businessProfile)
The business information shown to customers in the portal.
-
setDefaultReturnUrl
public ConfigurationCreateParams.Builder setDefaultReturnUrl(java.lang.String defaultReturnUrl)
The default URL to redirect customers to when they click on the portal's link to return to your website. This can be overriden when creating the session.
-
setDefaultReturnUrl
public ConfigurationCreateParams.Builder setDefaultReturnUrl(EmptyParam defaultReturnUrl)
The default URL to redirect customers to when they click on the portal's link to return to your website. This can be overriden when creating the session.
-
addExpand
public ConfigurationCreateParams.Builder addExpand(java.lang.String element)
Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeConfigurationCreateParams.expandfor the field documentation.
-
addAllExpand
public ConfigurationCreateParams.Builder addAllExpand(java.util.List<java.lang.String> elements)
Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeConfigurationCreateParams.expandfor the field documentation.
-
putExtraParam
public ConfigurationCreateParams.Builder putExtraParam(java.lang.String key, java.lang.Object value)
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeConfigurationCreateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public ConfigurationCreateParams.Builder putAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeConfigurationCreateParams.extraParamsfor the field documentation.
-
setFeatures
public ConfigurationCreateParams.Builder setFeatures(ConfigurationCreateParams.Features features)
Information about the features available in the portal.
-
-