Class: Io::Flow::V0::Models::OrganizationPutForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OrganizationPutForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Data required to upsert an organization.
Instance Attribute Summary collapse
-
#defaults ⇒ Object
readonly
Returns the value of attribute defaults.
-
#environment ⇒ Object
readonly
Returns the value of attribute environment.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parent_id ⇒ Object
readonly
Returns the value of attribute parent_id.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrganizationPutForm
constructor
A new instance of OrganizationPutForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ OrganizationPutForm
Returns a new instance of OrganizationPutForm.
42967 42968 42969 42970 42971 42972 42973 42974 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42967 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String)) @environment = (x = opts.delete(:environment); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Environment) ? x : ::Io::Flow::V0::Models::Environment.apply(x))) @parent_id = (x = opts.delete(:parent_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('parent_id', x, String)) @defaults = (x = opts.delete(:defaults); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::OrganizationDefaults) ? x : ::Io::Flow::V0::Models::OrganizationDefaults.new(x))) @status = (x = (x = opts.delete(:status); x.nil? ? "active" : x); x.is_a?(::Io::Flow::V0::Models::OrganizationStatus) ? x : ::Io::Flow::V0::Models::OrganizationStatus.apply(x)) end |
Instance Attribute Details
#defaults ⇒ Object (readonly)
Returns the value of attribute defaults.
42965 42966 42967 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42965 def defaults @defaults end |
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
42965 42966 42967 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42965 def environment @environment end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
42965 42966 42967 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42965 def name @name end |
#parent_id ⇒ Object (readonly)
Returns the value of attribute parent_id.
42965 42966 42967 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42965 def parent_id @parent_id end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
42965 42966 42967 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42965 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42980 42981 42982 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42980 def copy(incoming={}) OrganizationPutForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42984 42985 42986 42987 42988 42989 42990 42991 42992 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42984 def to_hash { :name => name, :environment => environment.nil? ? nil : environment.value, :parent_id => parent_id, :defaults => defaults.nil? ? nil : defaults.to_hash, :status => status.value } end |
#to_json ⇒ Object
42976 42977 42978 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42976 def to_json JSON.dump(to_hash) end |