Package com.stripe.param.billingportal
Class ConfigurationUpdateParams.Builder
- java.lang.Object
-
- com.stripe.param.billingportal.ConfigurationUpdateParams.Builder
-
- Enclosing class:
- ConfigurationUpdateParams
public static class ConfigurationUpdateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigurationUpdateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.ConfigurationUpdateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.ConfigurationUpdateParamsbuild()Finalize and obtain parameter instance from this builder.ConfigurationUpdateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.ConfigurationUpdateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.ConfigurationUpdateParams.BuildersetActive(java.lang.Boolean active)Whether the configuration is active and can be used to create portal sessions.ConfigurationUpdateParams.BuildersetBusinessProfile(ConfigurationUpdateParams.BusinessProfile businessProfile)The business information shown to customers in the portal.ConfigurationUpdateParams.BuildersetDefaultReturnUrl(EmptyParam defaultReturnUrl)The default URL to redirect customers to when they click on the portal's link to return to your website.ConfigurationUpdateParams.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.ConfigurationUpdateParams.BuildersetFeatures(ConfigurationUpdateParams.Features features)Information about the features available in the portal.
-
-
-
Method Detail
-
build
public ConfigurationUpdateParams build()
Finalize and obtain parameter instance from this builder.
-
setActive
public ConfigurationUpdateParams.Builder setActive(java.lang.Boolean active)
Whether the configuration is active and can be used to create portal sessions.
-
setBusinessProfile
public ConfigurationUpdateParams.Builder setBusinessProfile(ConfigurationUpdateParams.BusinessProfile businessProfile)
The business information shown to customers in the portal.
-
setDefaultReturnUrl
public ConfigurationUpdateParams.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 ConfigurationUpdateParams.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 ConfigurationUpdateParams.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. SeeConfigurationUpdateParams.expandfor the field documentation.
-
addAllExpand
public ConfigurationUpdateParams.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. SeeConfigurationUpdateParams.expandfor the field documentation.
-
putExtraParam
public ConfigurationUpdateParams.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. SeeConfigurationUpdateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public ConfigurationUpdateParams.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. SeeConfigurationUpdateParams.extraParamsfor the field documentation.
-
setFeatures
public ConfigurationUpdateParams.Builder setFeatures(ConfigurationUpdateParams.Features features)
Information about the features available in the portal.
-
-