Class: Io::Flow::V0::Models::EmailRecipient
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::EmailRecipient
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
readonly
Returns the value of attribute email.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ EmailRecipient
constructor
A new instance of EmailRecipient.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ EmailRecipient
Returns a new instance of EmailRecipient.
40997 40998 40999 41000 41001 41002 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40997 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:email], 'EmailRecipient') @email = HttpClient::Preconditions.assert_class('email', opts.delete(:email), String) @name = (x = opts.delete(:name); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Name) ? x : ::Io::Flow::V0::Models::Name.new(x))) end |
Instance Attribute Details
#email ⇒ Object (readonly)
Returns the value of attribute email.
40995 40996 40997 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40995 def email @email end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
40995 40996 40997 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40995 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
41008 41009 41010 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41008 def copy(incoming={}) EmailRecipient.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
41012 41013 41014 41015 41016 41017 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41012 def to_hash { :email => email, :name => name.nil? ? nil : name.to_hash } end |
#to_json ⇒ Object
41004 41005 41006 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41004 def to_json JSON.dump(to_hash) end |