Class PriceCreateParams.Recurring.Builder

java.lang.Object
com.stripe.param.PriceCreateParams.Recurring.Builder
Enclosing class:
PriceCreateParams.Recurring

public static class PriceCreateParams.Recurring.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • build

      Finalize and obtain parameter instance from this builder.
    • setAggregateUsage

      Specifies a usage aggregation strategy for prices of usage_type=metered. Allowed values are sum for summing up all usage during a period, last_during_period for using the last usage record reported within a period, last_ever for using the last usage record ever (across period bounds) or max which uses the usage record with the maximum reported usage during a period. Defaults to sum.
    • putExtraParam

      public PriceCreateParams.Recurring.Builder putExtraParam(String key, 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. See PriceCreateParams.Recurring.extraParams for the field documentation.
    • putAllExtraParam

      public PriceCreateParams.Recurring.Builder putAllExtraParam(Map<String,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. See PriceCreateParams.Recurring.extraParams for the field documentation.
    • setInterval

      Specifies billing frequency. Either day, week, month or year.
    • setIntervalCount

      public PriceCreateParams.Recurring.Builder setIntervalCount(Long intervalCount)
      The number of intervals between subscription billings. For example, interval=month and interval_count=3 bills every 3 months. Maximum of one year interval allowed (1 year, 12 months, or 52 weeks).
    • setTrialPeriodDays

      public PriceCreateParams.Recurring.Builder setTrialPeriodDays(Long trialPeriodDays)
      Default number of trial days when subscribing a customer to this price using trial_from_plan=true.
    • setUsageType

      Configures how the quantity per period should be determined. Can be either metered or licensed. licensed automatically bills the quantity set when adding it to a subscription. metered aggregates the total usage based on usage records. Defaults to licensed.