Class: Stigg::Models::V1::SubscriptionUpdateParams::Addon

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/stigg/models/v1/subscription_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(id:, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_cycle_anchor: nil, billing_information: nil, billing_period: nil, budget: nil, charges: nil, entitlements: nil, metadata: nil, minimum_spend: nil, price_overrides: nil, promotion_code: nil, schedule_strategy: nil, trial_end_date: nil, request_options: {}) ⇒ Object

Parameters:



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/stigg/models/v1/subscription_update_params.rb', line 149

class Addon < Stigg::Internal::Type::BaseModel
  # @!attribute id
  #   Addon ID
  #
  #   @return [String]
  required :id, String

  # @!attribute quantity
  #   Number of addon instances
  #
  #   @return [Integer]
  required :quantity, Integer

  # @!method initialize(id:, quantity:)
  #   Addon configuration
  #
  #   @param id [String] Addon ID
  #
  #   @param quantity [Integer] Number of addon instances
end

Instance Attribute Details

#idString

Addon ID

Returns:

  • (String)


154
# File 'lib/stigg/models/v1/subscription_update_params.rb', line 154

required :id, String

#quantityInteger

Number of addon instances

Returns:

  • (Integer)


160
# File 'lib/stigg/models/v1/subscription_update_params.rb', line 160

required :quantity, Integer