Class: Stigg::Models::V1::SubscriptionImportParams::Subscription::Addon
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Stigg::Models::V1::SubscriptionImportParams::Subscription::Addon
- Defined in:
- lib/stigg/models/v1/subscription_import_params.rb
Instance Attribute Summary collapse
-
#id ⇒ String
Addon ID.
-
#quantity ⇒ Integer
Number of addon instances.
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:, customer_id:, plan_id:, addons: nil, billing_id: nil, billing_period: nil, charges: nil, end_date: nil, metadata: nil, resource_id: nil, start_date: nil) ⇒ Object
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 137 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
#id ⇒ String
Addon ID
142 |
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 142 required :id, String |
#quantity ⇒ Integer
Number of addon instances
148 |
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 148 required :quantity, Integer |