Package com.stripe.param
Class PriceCreateParams.Recurring.Builder
java.lang.Object
com.stripe.param.PriceCreateParams.Recurring.Builder
- Enclosing class:
PriceCreateParams.Recurring
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Finalize and obtain parameter instance from this builder.putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map.setAggregateUsage(PriceCreateParams.Recurring.AggregateUsage aggregateUsage) Specifies a usage aggregation strategy for prices ofusage_type=metered.Specifies billing frequency.setIntervalCount(Long intervalCount) The number of intervals between subscription billings.setTrialPeriodDays(Long trialPeriodDays) Default number of trial days when subscribing a customer to this price usingtrial_from_plan=true.Configures how the quantity per period should be determined.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAggregateUsage
public PriceCreateParams.Recurring.Builder setAggregateUsage(PriceCreateParams.Recurring.AggregateUsage aggregateUsage) Specifies a usage aggregation strategy for prices ofusage_type=metered. Allowed values aresumfor summing up all usage during a period,last_during_periodfor using the last usage record reported within a period,last_everfor using the last usage record ever (across period bounds) ormaxwhich uses the usage record with the maximum reported usage during a period. Defaults tosum. -
putExtraParam
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. SeePriceCreateParams.Recurring.extraParamsfor the field documentation. -
putAllExtraParam
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. SeePriceCreateParams.Recurring.extraParamsfor the field documentation. -
setInterval
public PriceCreateParams.Recurring.Builder setInterval(PriceCreateParams.Recurring.Interval interval) Specifies billing frequency. Eitherday,week,monthoryear. -
setIntervalCount
The number of intervals between subscription billings. For example,interval=monthandinterval_count=3bills every 3 months. Maximum of one year interval allowed (1 year, 12 months, or 52 weeks). -
setTrialPeriodDays
Default number of trial days when subscribing a customer to this price usingtrial_from_plan=true. -
setUsageType
public PriceCreateParams.Recurring.Builder setUsageType(PriceCreateParams.Recurring.UsageType usageType) Configures how the quantity per period should be determined. Can be eithermeteredorlicensed.licensedautomatically bills thequantityset when adding it to a subscription.meteredaggregates the total usage based on usage records. Defaults tolicensed.
-