Class: Io::Flow::V0::Models::VirtualCardVersion
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::VirtualCardVersion
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#virtual_card ⇒ Object
readonly
Returns the value of attribute virtual_card.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ VirtualCardVersion
constructor
A new instance of VirtualCardVersion.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ VirtualCardVersion
Returns a new instance of VirtualCardVersion.
40706 40707 40708 40709 40710 40711 40712 40713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40706 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :timestamp, :type, :virtual_card], 'VirtualCardVersion') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime) @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::ChangeType) ? x : ::Io::Flow::V0::Models::ChangeType.apply(x)) @virtual_card = (x = opts.delete(:virtual_card); x.is_a?(::Io::Flow::V0::Models::VirtualCard) ? x : ::Io::Flow::V0::Models::VirtualCard.new(x)) end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
40704 40705 40706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40704 def id @id end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
40704 40705 40706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40704 def end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
40704 40705 40706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40704 def type @type end |
#virtual_card ⇒ Object (readonly)
Returns the value of attribute virtual_card.
40704 40705 40706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40704 def virtual_card @virtual_card end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
40719 40720 40721 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40719 def copy(incoming={}) VirtualCardVersion.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
40723 40724 40725 40726 40727 40728 40729 40730 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40723 def to_hash { :id => id, :timestamp => , :type => type.value, :virtual_card => virtual_card.to_hash } end |
#to_json ⇒ Object
40715 40716 40717 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40715 def to_json JSON.dump(to_hash) end |