Class: Stigg::Models::V1::SubscriptionImportParams::Subscription::Addon

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/stigg/models/v1/subscription_import_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:, 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

Parameters:



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 123

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)


128
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 128

required :id, String

#quantityInteger

Number of addon instances

Returns:

  • (Integer)


134
# File 'lib/stigg/models/v1/subscription_import_params.rb', line 134

required :quantity, Integer