Class: SDM::RoleCreateResponse
- Inherits:
-
Object
- Object
- SDM::RoleCreateResponse
- 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
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#role ⇒ Object
The created Role.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil, role: nil) ⇒ RoleCreateResponse
constructor
A new instance of RoleCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil, role: nil) ⇒ RoleCreateResponse
Returns a new instance of RoleCreateResponse.
7353 7354 7355 7356 7357 7358 7359 7360 7361 |
# File 'lib/models/porcelain.rb', line 7353 def initialize( meta: nil, rate_limit: nil, role: nil ) = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit @role = role == nil ? nil : role end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
7347 7348 7349 |
# File 'lib/models/porcelain.rb', line 7347 def end |
#rate_limit ⇒ Object
Rate limit information.
7349 7350 7351 |
# File 'lib/models/porcelain.rb', line 7349 def rate_limit @rate_limit end |
#role ⇒ Object
The created Role.
7351 7352 7353 |
# File 'lib/models/porcelain.rb', line 7351 def role @role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
7363 7364 7365 7366 7367 7368 7369 |
# File 'lib/models/porcelain.rb', line 7363 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |