Class: Io::Flow::V0::Models::Membership

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Represents the users that are part of this organization. Primary purpose is to manage which users have access to the organization’s data and to provide a simple user interface to assign roles and permissions to each member of the organization

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Membership

Returns a new instance of Membership.



29082
29083
29084
29085
29086
29087
29088
29089
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29082

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :organization, :user, :role], 'Membership')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @organization = (x = opts.delete(:organization); x.is_a?(::Io::Flow::V0::Models::ExpandableOrganization) ? x : ::Io::Flow::V0::Models::ExpandableOrganization.from_json(x))
  @user = (x = opts.delete(:user); x.is_a?(::Io::Flow::V0::Models::ExpandableUser) ? x : ::Io::Flow::V0::Models::ExpandableUser.from_json(x))
  @role = (x = opts.delete(:role); x.is_a?(::Io::Flow::V0::Models::Role) ? x : ::Io::Flow::V0::Models::Role.apply(x))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



29080
29081
29082
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29080

def id
  @id
end

#organizationObject (readonly)

Returns the value of attribute organization.



29080
29081
29082
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29080

def organization
  @organization
end

#roleObject (readonly)

Returns the value of attribute role.



29080
29081
29082
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29080

def role
  @role
end

#userObject (readonly)

Returns the value of attribute user.



29080
29081
29082
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29080

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



29095
29096
29097
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29095

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

#to_hashObject



29099
29100
29101
29102
29103
29104
29105
29106
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29099

def to_hash
  {
    :id => id,
    :organization => organization.to_hash,
    :user => user.to_hash,
    :role => role.value
  }
end

#to_jsonObject



29091
29092
29093
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29091

def to_json
  JSON.dump(to_hash)
end