Class: AdvancedBilling::AllocationExpirationDate

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

Overview

AllocationExpirationDate Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(expires_at: SKIP, additional_properties: {}) ⇒ AllocationExpirationDate

Returns a new instance of AllocationExpirationDate.



36
37
38
39
40
41
42
43
# File 'lib/advanced_billing/models/allocation_expiration_date.rb', line 36

def initialize(expires_at: SKIP, additional_properties: {})
  @expires_at = expires_at unless expires_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

#expires_atDateTime

TODO: Write general description for this method

Returns:

  • (DateTime)


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

def expires_at
  @expires_at
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



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

def self.from_hash(hash)
  return nil unless hash

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

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

  # Create object from extracted values.
  AllocationExpirationDate.new(expires_at: expires_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/allocation_expiration_date.rb', line 18

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

.nullablesObject

An array for nullable fields



32
33
34
# File 'lib/advanced_billing/models/allocation_expiration_date.rb', line 32

def self.nullables
  []
end

.optionalsObject

An array for optional fields



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

def self.optionals
  %w[
    expires_at
  ]
end

Instance Method Details

#to_custom_expires_atObject



64
65
66
# File 'lib/advanced_billing/models/allocation_expiration_date.rb', line 64

def to_custom_expires_at
  DateTimeHelper.to_rfc3339(expires_at)
end