Class: Io::Flow::V0::Models::Organization
- Inherits:
-
ExpandableOrganization
- Object
- ExpandableOrganization
- Io::Flow::V0::Models::Organization
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a single organization in the system, and what environment it is currently operating in.
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#defaults ⇒ Object
readonly
Returns the value of attribute defaults.
-
#environment ⇒ Object
readonly
Returns the value of attribute environment.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Attributes inherited from ExpandableOrganization
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Organization
constructor
A new instance of Organization.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from ExpandableOrganization
Constructor Details
#initialize(incoming = {}) ⇒ Organization
Returns a new instance of Organization.
42496 42497 42498 42499 42500 42501 42502 42503 42504 42505 42506 42507 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42496 def initialize(incoming={}) super(:discriminator => ExpandableOrganization::Types::ORGANIZATION) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :name, :environment], 'Organization') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String) @environment = (x = opts.delete(:environment); x.is_a?(::Io::Flow::V0::Models::Environment) ? x : ::Io::Flow::V0::Models::Environment.apply(x)) @parent = (x = opts.delete(:parent); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::OrganizationReference) ? x : ::Io::Flow::V0::Models::OrganizationReference.new(x))) @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))) @created_at = (x = opts.delete(:created_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) @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
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def created_at @created_at end |
#defaults ⇒ Object (readonly)
Returns the value of attribute defaults.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def defaults @defaults end |
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def environment @environment end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def name @name end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def parent @parent end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
42494 42495 42496 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42494 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42513 42514 42515 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42513 def copy(incoming={}) Organization.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
42517 42518 42519 42520 42521 42522 42523 42524 42525 42526 42527 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42517 def subtype_to_hash { :id => id, :name => name, :environment => environment.value, :parent => parent.nil? ? nil : parent.to_hash, :defaults => defaults.nil? ? nil : defaults.to_hash, :created_at => created_at, :status => status.value } end |
#to_json ⇒ Object
42509 42510 42511 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42509 def to_json JSON.dump(to_hash) end |