Package com.stripe.param.identity
Class VerificationSessionUpdateParams.Builder
- java.lang.Object
-
- com.stripe.param.identity.VerificationSessionUpdateParams.Builder
-
- Enclosing class:
- VerificationSessionUpdateParams
public static class VerificationSessionUpdateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VerificationSessionUpdateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.VerificationSessionUpdateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.VerificationSessionUpdateParamsbuild()Finalize and obtain parameter instance from this builder.VerificationSessionUpdateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.VerificationSessionUpdateParams.BuilderputAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)Add all map key/value pairs to `metadata` map.VerificationSessionUpdateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.VerificationSessionUpdateParams.BuilderputMetadata(java.lang.String key, java.lang.String value)Add a key/value pair to `metadata` map.VerificationSessionUpdateParams.BuildersetOptions(VerificationSessionUpdateParams.Options options)A set of options for the session’s verification checks.VerificationSessionUpdateParams.BuildersetType(VerificationSessionUpdateParams.Type type)The type of verification check to be performed.
-
-
-
Method Detail
-
build
public VerificationSessionUpdateParams build()
Finalize and obtain parameter instance from this builder.
-
addExpand
public VerificationSessionUpdateParams.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. SeeVerificationSessionUpdateParams.expandfor the field documentation.
-
addAllExpand
public VerificationSessionUpdateParams.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. SeeVerificationSessionUpdateParams.expandfor the field documentation.
-
putExtraParam
public VerificationSessionUpdateParams.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. SeeVerificationSessionUpdateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public VerificationSessionUpdateParams.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. SeeVerificationSessionUpdateParams.extraParamsfor the field documentation.
-
putMetadata
public VerificationSessionUpdateParams.Builder putMetadata(java.lang.String key, java.lang.String value)
Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeVerificationSessionUpdateParams.metadatafor the field documentation.
-
putAllMetadata
public VerificationSessionUpdateParams.Builder putAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)
Add all map key/value pairs to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeVerificationSessionUpdateParams.metadatafor the field documentation.
-
setOptions
public VerificationSessionUpdateParams.Builder setOptions(VerificationSessionUpdateParams.Options options)
A set of options for the session’s verification checks.
-
setType
public VerificationSessionUpdateParams.Builder setType(VerificationSessionUpdateParams.Type type)
The type of verification check to be performed.
-
-