Class: Io::Flow::V0::Models::VirtualCardForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::VirtualCardForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#limit ⇒ Object
readonly
Returns the value of attribute limit.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ VirtualCardForm
constructor
A new instance of VirtualCardForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ VirtualCardForm
Returns a new instance of VirtualCardForm.
32659 32660 32661 32662 32663 32664 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32659 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:limit], 'VirtualCardForm') @limit = (x = opts.delete(:limit); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x)) @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h }) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
32657 32658 32659 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32657 def attributes @attributes end |
#limit ⇒ Object (readonly)
Returns the value of attribute limit.
32657 32658 32659 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32657 def limit @limit end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
32670 32671 32672 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32670 def copy(incoming={}) VirtualCardForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
32674 32675 32676 32677 32678 32679 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32674 def to_hash { :limit => limit.to_hash, :attributes => attributes.nil? ? nil : attributes } end |
#to_json ⇒ Object
32666 32667 32668 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32666 def to_json JSON.dump(to_hash) end |