Package com.stripe.param
Class SourceUpdateParams.Builder
- java.lang.Object
-
- com.stripe.param.SourceUpdateParams.Builder
-
- Enclosing class:
- SourceUpdateParams
public static class SourceUpdateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SourceUpdateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.SourceUpdateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.SourceUpdateParamsbuild()Finalize and obtain parameter instance from this builder.SourceUpdateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.SourceUpdateParams.BuilderputAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)Add all map key/value pairs to `metadata` map.SourceUpdateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.SourceUpdateParams.BuilderputMetadata(java.lang.String key, java.lang.String value)Add a key/value pair to `metadata` map.SourceUpdateParams.BuildersetAmount(java.lang.Long amount)Amount associated with the source.SourceUpdateParams.BuildersetMandate(SourceUpdateParams.Mandate mandate)Information about a mandate possibility attached to a source object (generally for bank debits) as well as its acceptance status.SourceUpdateParams.BuildersetMetadata(EmptyParam metadata)Set of key-value pairs that you can attach to an object.SourceUpdateParams.BuildersetMetadata(java.util.Map<java.lang.String,java.lang.String> metadata)Set of key-value pairs that you can attach to an object.SourceUpdateParams.BuildersetOwner(SourceUpdateParams.Owner owner)Information about the owner of the payment instrument that may be used or required by particular source types.SourceUpdateParams.BuildersetSourceOrder(SourceUpdateParams.SourceOrder sourceOrder)Information about the items and shipping associated with the source.
-
-
-
Method Detail
-
build
public SourceUpdateParams build()
Finalize and obtain parameter instance from this builder.
-
setAmount
public SourceUpdateParams.Builder setAmount(java.lang.Long amount)
Amount associated with the source.
-
addExpand
public SourceUpdateParams.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. SeeSourceUpdateParams.expandfor the field documentation.
-
addAllExpand
public SourceUpdateParams.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. SeeSourceUpdateParams.expandfor the field documentation.
-
putExtraParam
public SourceUpdateParams.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. SeeSourceUpdateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public SourceUpdateParams.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. SeeSourceUpdateParams.extraParamsfor the field documentation.
-
setMandate
public SourceUpdateParams.Builder setMandate(SourceUpdateParams.Mandate mandate)
Information about a mandate possibility attached to a source object (generally for bank debits) as well as its acceptance status.
-
putMetadata
public SourceUpdateParams.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. SeeSourceUpdateParams.metadatafor the field documentation.
-
putAllMetadata
public SourceUpdateParams.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. SeeSourceUpdateParams.metadatafor the field documentation.
-
setMetadata
public SourceUpdateParams.Builder setMetadata(EmptyParam metadata)
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.
-
setMetadata
public SourceUpdateParams.Builder setMetadata(java.util.Map<java.lang.String,java.lang.String> metadata)
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.
-
setOwner
public SourceUpdateParams.Builder setOwner(SourceUpdateParams.Owner owner)
Information about the owner of the payment instrument that may be used or required by particular source types.
-
setSourceOrder
public SourceUpdateParams.Builder setSourceOrder(SourceUpdateParams.SourceOrder sourceOrder)
Information about the items and shipping associated with the source. Required for transactional credit (for example Klarna) sources before you can charge it.
-
-