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.



46158
46159
46160
46161
46162
46163
46164
46165
46166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46158

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :organization, :user, :roles], '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.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Role) ? x : ::Io::Flow::V0::Models::Role.apply(x)))
  @roles = HttpClient::Preconditions.assert_class('roles', opts.delete(:roles), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FlowRole) ? x : ::Io::Flow::V0::Models::FlowRole.apply(x)) }
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



46156
46157
46158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46156

def id
  @id
end

#organizationObject (readonly)

Returns the value of attribute organization.



46156
46157
46158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46156

def organization
  @organization
end

#roleObject (readonly)

Returns the value of attribute role.



46156
46157
46158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46156

def role
  @role
end

#rolesObject (readonly)

Returns the value of attribute roles.



46156
46157
46158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46156

def roles
  @roles
end

#userObject (readonly)

Returns the value of attribute user.



46156
46157
46158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46156

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46172
46173
46174
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46172

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

#to_hashObject



46176
46177
46178
46179
46180
46181
46182
46183
46184
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46176

def to_hash
  {
    :id => id,
    :organization => organization.to_hash,
    :user => user.to_hash,
    :role => role.nil? ? nil : role.value,
    :roles => roles.map { |o| o.value }
  }
end

#to_jsonObject



46168
46169
46170
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46168

def to_json
  JSON.dump(to_hash)
end