Package com.stripe.param
Class FeeRefundCollectionCreateParams.Builder
- java.lang.Object
-
- com.stripe.param.FeeRefundCollectionCreateParams.Builder
-
- Enclosing class:
- FeeRefundCollectionCreateParams
public static class FeeRefundCollectionCreateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FeeRefundCollectionCreateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.FeeRefundCollectionCreateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.FeeRefundCollectionCreateParamsbuild()Finalize and obtain parameter instance from this builder.FeeRefundCollectionCreateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.FeeRefundCollectionCreateParams.BuilderputAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)Add all map key/value pairs to `metadata` map.FeeRefundCollectionCreateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.FeeRefundCollectionCreateParams.BuilderputMetadata(java.lang.String key, java.lang.String value)Add a key/value pair to `metadata` map.FeeRefundCollectionCreateParams.BuildersetAmount(java.lang.Long amount)A positive integer, in %s, representing how much of this fee to refund.
-
-
-
Method Detail
-
build
public FeeRefundCollectionCreateParams build()
Finalize and obtain parameter instance from this builder.
-
setAmount
public FeeRefundCollectionCreateParams.Builder setAmount(java.lang.Long amount)
A positive integer, in %s, representing how much of this fee to refund. Can refund only up to the remaining unrefunded amount of the fee.
-
addExpand
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.expandfor the field documentation.
-
addAllExpand
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.expandfor the field documentation.
-
putExtraParam
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.extraParamsfor the field documentation.
-
putMetadata
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.metadatafor the field documentation.
-
putAllMetadata
public FeeRefundCollectionCreateParams.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. SeeFeeRefundCollectionCreateParams.metadatafor the field documentation.
-
-