Class: SDM::RoleCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

RoleCreateResponse reports how the Roles were created in the system. It can communicate partial successes or failures.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, rate_limit: nil, role: nil) ⇒ RoleCreateResponse

Returns a new instance of RoleCreateResponse.



5442
5443
5444
5445
5446
5447
5448
5449
5450
# File 'lib/models/porcelain.rb', line 5442

def initialize(
  meta: nil,
  rate_limit: nil,
  role: nil
)
  @meta = meta == nil ? nil : meta
  @rate_limit = rate_limit == nil ? nil : rate_limit
  @role = role == nil ? nil : role
end

Instance Attribute Details

#metaObject

Reserved for future use.



5436
5437
5438
# File 'lib/models/porcelain.rb', line 5436

def meta
  @meta
end

#rate_limitObject

Rate limit information.



5438
5439
5440
# File 'lib/models/porcelain.rb', line 5438

def rate_limit
  @rate_limit
end

#roleObject

The created Role.



5440
5441
5442
# File 'lib/models/porcelain.rb', line 5440

def role
  @role
end

Instance Method Details

#to_json(options = {}) ⇒ Object



5452
5453
5454
5455
5456
5457
5458
# File 'lib/models/porcelain.rb', line 5452

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end