Class: Io::Flow::V0::Models::Organization

Inherits:
ExpandableOrganization show all
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

Attributes inherited from ExpandableOrganization

#discriminator

Instance Method Summary collapse

Methods inherited from ExpandableOrganization

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ Organization

Returns a new instance of Organization.



25477
25478
25479
25480
25481
25482
25483
25484
25485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25477

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)))
end

Instance Attribute Details

#environmentObject (readonly)

Returns the value of attribute environment.



25475
25476
25477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25475

def environment
  @environment
end

#idObject (readonly)

Returns the value of attribute id.



25475
25476
25477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25475

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



25475
25476
25477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25475

def name
  @name
end

#parentObject (readonly)

Returns the value of attribute parent.



25475
25476
25477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25475

def parent
  @parent
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



25491
25492
25493
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25491

def copy(incoming={})
  Organization.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



25495
25496
25497
25498
25499
25500
25501
25502
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25495

def subtype_to_hash
  {
    :id => id,
    :name => name,
    :environment => environment.value,
    :parent => parent.nil? ? nil : parent.to_hash
  }
end

#to_jsonObject



25487
25488
25489
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25487

def to_json
  JSON.dump(to_hash)
end