Package com.stripe.param
Class PriceListParams.Recurring.Builder
- java.lang.Object
-
- com.stripe.param.PriceListParams.Recurring.Builder
-
- Enclosing class:
- PriceListParams.Recurring
public static class PriceListParams.Recurring.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PriceListParams.Recurringbuild()Finalize and obtain parameter instance from this builder.PriceListParams.Recurring.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.PriceListParams.Recurring.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.PriceListParams.Recurring.BuildersetInterval(PriceListParams.Recurring.Interval interval)Filter by billing frequency.PriceListParams.Recurring.BuildersetUsageType(PriceListParams.Recurring.UsageType usageType)Filter by the usage type for this price.
-
-
-
Method Detail
-
build
public PriceListParams.Recurring build()
Finalize and obtain parameter instance from this builder.
-
putExtraParam
public PriceListParams.Recurring.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. SeePriceListParams.Recurring.extraParamsfor the field documentation.
-
putAllExtraParam
public PriceListParams.Recurring.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. SeePriceListParams.Recurring.extraParamsfor the field documentation.
-
setInterval
public PriceListParams.Recurring.Builder setInterval(PriceListParams.Recurring.Interval interval)
Filter by billing frequency. Eitherday,week,monthoryear.
-
setUsageType
public PriceListParams.Recurring.Builder setUsageType(PriceListParams.Recurring.UsageType usageType)
Filter by the usage type for this price. Can be eithermeteredorlicensed.
-
-