Class: AdvancedBilling::AutoResume

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

Overview

AutoResume Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(automatically_resume_at: SKIP, additional_properties: {}) ⇒ AutoResume

Returns a new instance of AutoResume.



38
39
40
41
42
43
44
45
# File 'lib/advanced_billing/models/auto_resume.rb', line 38

def initialize(automatically_resume_at: SKIP, additional_properties: {})
  @automatically_resume_at = automatically_resume_at unless automatically_resume_at == SKIP

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

Instance Attribute Details

#automatically_resume_atDateTime

TODO: Write general description for this method

Returns:

  • (DateTime)


15
16
17
# File 'lib/advanced_billing/models/auto_resume.rb', line 15

def automatically_resume_at
  @automatically_resume_at
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



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

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  automatically_resume_at = if hash.key?('automatically_resume_at')
                              (DateTimeHelper.from_rfc3339(hash['automatically_resume_at']) if hash['automatically_resume_at'])
                            else
                              SKIP
                            end

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

  # Create object from extracted values.
  AutoResume.new(automatically_resume_at: automatically_resume_at,
                 additional_properties: hash)
end

.namesObject

A mapping from model property names to API property names.



18
19
20
21
22
# File 'lib/advanced_billing/models/auto_resume.rb', line 18

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

.nullablesObject

An array for nullable fields



32
33
34
35
36
# File 'lib/advanced_billing/models/auto_resume.rb', line 32

def self.nullables
  %w[
    automatically_resume_at
  ]
end

.optionalsObject

An array for optional fields



25
26
27
28
29
# File 'lib/advanced_billing/models/auto_resume.rb', line 25

def self.optionals
  %w[
    automatically_resume_at
  ]
end

Instance Method Details

#to_custom_automatically_resume_atObject



66
67
68
# File 'lib/advanced_billing/models/auto_resume.rb', line 66

def to_custom_automatically_resume_at
  DateTimeHelper.to_rfc3339(automatically_resume_at)
end