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.
54537 54538 54539 54540 54541 54542 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54537 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.
54535 54536 54537 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54535 def attributes @attributes end |
#limit ⇒ Object (readonly)
Returns the value of attribute limit.
54535 54536 54537 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54535 def limit @limit end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
54548 54549 54550 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54548 def copy(incoming={}) VirtualCardForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
54552 54553 54554 54555 54556 54557 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54552 def to_hash { :limit => limit.to_hash, :attributes => attributes.nil? ? nil : attributes } end |
#to_json ⇒ Object
54544 54545 54546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54544 def to_json JSON.dump(to_hash) end |