Class: Io::Flow::V0::Models::InvitationForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InvitationForm
- 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.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#role ⇒ Object
readonly
Returns the value of attribute role.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InvitationForm
constructor
A new instance of InvitationForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InvitationForm
Returns a new instance of InvitationForm.
16827 16828 16829 16830 16831 16832 16833 16834 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16827 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:organization, :email], 'InvitationForm') @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String) @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))) @role = (x = (x = opts.delete(:role); x.nil? ? "member" : x); x.is_a?(::Io::Flow::V0::Models::Role) ? x : ::Io::Flow::V0::Models::Role.apply(x)) end |
Instance Attribute Details
#email ⇒ Object (readonly)
Returns the value of attribute email.
16825 16826 16827 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16825 def email @email end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
16825 16826 16827 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16825 def name @name end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
16825 16826 16827 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16825 def organization @organization end |
#role ⇒ Object (readonly)
Returns the value of attribute role.
16825 16826 16827 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16825 def role @role end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
16840 16841 16842 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16840 def copy(incoming={}) InvitationForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
16844 16845 16846 16847 16848 16849 16850 16851 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16844 def to_hash { :organization => organization, :email => email, :name => name.nil? ? nil : name.to_hash, :role => role.value } end |
#to_json ⇒ Object
16836 16837 16838 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16836 def to_json JSON.dump(to_hash) end |