Class: AdvancedBilling::ReactivationBilling

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

Overview

These values are only applicable to subscriptions using calendar billing

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(reactivation_charge: ReactivationCharge::PRORATED, additional_properties: {}) ⇒ ReactivationBilling

Returns a new instance of ReactivationBilling.



40
41
42
43
44
45
46
47
48
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 40

def initialize(reactivation_charge: ReactivationCharge::PRORATED,
               additional_properties: {})
  @reactivation_charge = reactivation_charge unless reactivation_charge == SKIP

  # Add additional model properties to the instance.
  additional_properties.each do |_name, _value|
    instance_variable_set("@#{_name}", _value)
  end
end

Instance Attribute Details

#reactivation_chargeReactivationCharge

You may choose how to handle the reactivation charge for that subscription: 1) ‘prorated` A prorated charge for the product price will be attempted for to complete the period 2) `immediate` A full-price charge for the product price will be attempted immediately 3) `delayed` A full-price charge for the product price will be attempted at the next renewal

Returns:



19
20
21
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 19

def reactivation_charge
  @reactivation_charge
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 51

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  reactivation_charge =
    hash['reactivation_charge'] ||= ReactivationCharge::PRORATED

  # Clean out expected properties from Hash.
  names.each_value { |k| hash.delete(k) }

  # Create object from extracted values.
  ReactivationBilling.new(reactivation_charge: reactivation_charge,
                          additional_properties: hash)
end

.namesObject

A mapping from model property names to API property names.



22
23
24
25
26
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 22

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['reactivation_charge'] = 'reactivation_charge'
  @_hash
end

.nullablesObject

An array for nullable fields



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

def self.nullables
  []
end

.optionalsObject

An array for optional fields



29
30
31
32
33
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 29

def self.optionals
  %w[
    reactivation_charge
  ]
end

.validate(value) ⇒ Object

Validates an instance of the object from a given value.

Parameters:



68
69
70
71
72
73
74
# File 'lib/advanced_billing/models/reactivation_billing.rb', line 68

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

  return false unless value.instance_of? Hash

  true
end