Package com.stripe.param
Class LoginLinkCreateOnAccountParams.Builder
- java.lang.Object
-
- com.stripe.param.LoginLinkCreateOnAccountParams.Builder
-
- Enclosing class:
- LoginLinkCreateOnAccountParams
public static class LoginLinkCreateOnAccountParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoginLinkCreateOnAccountParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.LoginLinkCreateOnAccountParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.LoginLinkCreateOnAccountParamsbuild()Finalize and obtain parameter instance from this builder.LoginLinkCreateOnAccountParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.LoginLinkCreateOnAccountParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.LoginLinkCreateOnAccountParams.BuildersetRedirectUrl(java.lang.String redirectUrl)Where to redirect the user after they log out of their dashboard.
-
-
-
Method Detail
-
build
public LoginLinkCreateOnAccountParams build()
Finalize and obtain parameter instance from this builder.
-
addExpand
public LoginLinkCreateOnAccountParams.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. SeeLoginLinkCreateOnAccountParams.expandfor the field documentation.
-
addAllExpand
public LoginLinkCreateOnAccountParams.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. SeeLoginLinkCreateOnAccountParams.expandfor the field documentation.
-
putExtraParam
public LoginLinkCreateOnAccountParams.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. SeeLoginLinkCreateOnAccountParams.extraParamsfor the field documentation.
-
putAllExtraParam
public LoginLinkCreateOnAccountParams.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. SeeLoginLinkCreateOnAccountParams.extraParamsfor the field documentation.
-
setRedirectUrl
public LoginLinkCreateOnAccountParams.Builder setRedirectUrl(java.lang.String redirectUrl)
Where to redirect the user after they log out of their dashboard.
-
-