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
67440 67441 67442 67443 67444 67445 67446 67447 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67440 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) @timestamp = 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.
67438 67439 67440 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67438 def id @id end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
67438 67439 67440 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67438 def @timestamp end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
67438 67439 67440 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67438 def type @type end |
#virtual_card ⇒ Object (readonly)
Returns the value of attribute virtual_card.
67438 67439 67440 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67438 def virtual_card @virtual_card end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
67453 67454 67455 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67453 def copy(incoming={}) VirtualCardVersion.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
67457 67458 67459 67460 67461 67462 67463 67464 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67457 def to_hash { :id => id, :timestamp => , :type => type.value, :virtual_card => virtual_card.to_hash } end |
#to_json ⇒ Object
67449 67450 67451 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67449 def to_json JSON.dump(to_hash) end |