Class: AdvancedBilling::ComponentCostData

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/advanced_billing/models/component_cost_data.rb

Overview

ComponentCostData Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(component_code_id = SKIP, price_point_id = SKIP, product_id = SKIP, quantity = SKIP, amount = SKIP, pricing_scheme = SKIP, tiers = SKIP) ⇒ ComponentCostData

Returns a new instance of ComponentCostData.



77
78
79
80
81
82
83
84
85
86
87
# File 'lib/advanced_billing/models/component_cost_data.rb', line 77

def initialize(component_code_id = SKIP, price_point_id = SKIP,
               product_id = SKIP, quantity = SKIP, amount = SKIP,
               pricing_scheme = SKIP, tiers = SKIP)
  @component_code_id = component_code_id unless component_code_id == SKIP
  @price_point_id = price_point_id unless price_point_id == SKIP
  @product_id = product_id unless product_id == SKIP
  @quantity = quantity unless quantity == SKIP
  @amount = amount unless amount == SKIP
  @pricing_scheme = pricing_scheme unless pricing_scheme == SKIP
  @tiers = tiers unless tiers == SKIP
end

Instance Attribute Details

#amountString

TODO: Write general description for this method

Returns:

  • (String)


30
31
32
# File 'lib/advanced_billing/models/component_cost_data.rb', line 30

def amount
  @amount
end

#component_code_idInteger

TODO: Write general description for this method

Returns:

  • (Integer)


14
15
16
# File 'lib/advanced_billing/models/component_cost_data.rb', line 14

def component_code_id
  @component_code_id
end

#price_point_idInteger

TODO: Write general description for this method

Returns:

  • (Integer)


18
19
20
# File 'lib/advanced_billing/models/component_cost_data.rb', line 18

def price_point_id
  @price_point_id
end

#pricing_schemePricingScheme

The identifier for the pricing scheme. See [Product Components](help.chargify.com/products/product-components.html) for an overview of pricing schemes.

Returns:



36
37
38
# File 'lib/advanced_billing/models/component_cost_data.rb', line 36

def pricing_scheme
  @pricing_scheme
end

#product_idInteger

TODO: Write general description for this method

Returns:

  • (Integer)


22
23
24
# File 'lib/advanced_billing/models/component_cost_data.rb', line 22

def product_id
  @product_id
end

#quantityString

TODO: Write general description for this method

Returns:

  • (String)


26
27
28
# File 'lib/advanced_billing/models/component_cost_data.rb', line 26

def quantity
  @quantity
end

#tiersArray[ComponentCostDataRateTier]

The identifier for the pricing scheme. See [Product Components](help.chargify.com/products/product-components.html) for an overview of pricing schemes.

Returns:



42
43
44
# File 'lib/advanced_billing/models/component_cost_data.rb', line 42

def tiers
  @tiers
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/advanced_billing/models/component_cost_data.rb', line 90

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  component_code_id =
    hash.key?('component_code_id') ? hash['component_code_id'] : SKIP
  price_point_id =
    hash.key?('price_point_id') ? hash['price_point_id'] : SKIP
  product_id = hash.key?('product_id') ? hash['product_id'] : SKIP
  quantity = hash.key?('quantity') ? hash['quantity'] : SKIP
  amount = hash.key?('amount') ? hash['amount'] : SKIP
  pricing_scheme = hash.key?('pricing_scheme') ? APIHelper.deserialize_union_type(
    UnionTypeLookUp.get(:ComponentCostDataPricingScheme), hash['pricing_scheme']
  ) : SKIP
  # Parameter is an array, so we need to iterate through it
  tiers = nil
  unless hash['tiers'].nil?
    tiers = []
    hash['tiers'].each do |structure|
      tiers << (ComponentCostDataRateTier.from_hash(structure) if structure)
    end
  end

  tiers = SKIP unless hash.key?('tiers')

  # Create object from extracted values.
  ComponentCostData.new(component_code_id,
                        price_point_id,
                        product_id,
                        quantity,
                        amount,
                        pricing_scheme,
                        tiers)
end

.namesObject

A mapping from model property names to API property names.



45
46
47
48
49
50
51
52
53
54
55
# File 'lib/advanced_billing/models/component_cost_data.rb', line 45

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['component_code_id'] = 'component_code_id'
  @_hash['price_point_id'] = 'price_point_id'
  @_hash['product_id'] = 'product_id'
  @_hash['quantity'] = 'quantity'
  @_hash['amount'] = 'amount'
  @_hash['pricing_scheme'] = 'pricing_scheme'
  @_hash['tiers'] = 'tiers'
  @_hash
end

.nullablesObject

An array for nullable fields



71
72
73
74
75
# File 'lib/advanced_billing/models/component_cost_data.rb', line 71

def self.nullables
  %w[
    component_code_id
  ]
end

.optionalsObject

An array for optional fields



58
59
60
61
62
63
64
65
66
67
68
# File 'lib/advanced_billing/models/component_cost_data.rb', line 58

def self.optionals
  %w[
    component_code_id
    price_point_id
    product_id
    quantity
    amount
    pricing_scheme
    tiers
  ]
end

.validate(value) ⇒ Object

Validates an instance of the object from a given value.

Parameters:



127
128
129
130
131
132
133
# File 'lib/advanced_billing/models/component_cost_data.rb', line 127

def self.validate(value)
  return true if value.instance_of? self

  return false unless value.instance_of? Hash

  true
end