Class: SDM::RoleAttachmentDeleteResponse

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

Overview

RoleAttachmentDeleteResponse returns information about a RoleAttachment that was deleted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, rate_limit: nil) ⇒ RoleAttachmentDeleteResponse

Returns a new instance of RoleAttachmentDeleteResponse.



6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
# File 'lib/models/porcelain.rb', line 6307

def initialize(
  meta: nil,
  rate_limit: nil
)
  if meta != nil
    @meta = meta
  end
  if rate_limit != nil
    @rate_limit = rate_limit
  end
end

Instance Attribute Details

#metaObject

Reserved for future use.



6303
6304
6305
# File 'lib/models/porcelain.rb', line 6303

def meta
  @meta
end

#rate_limitObject

Rate limit information.



6305
6306
6307
# File 'lib/models/porcelain.rb', line 6305

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6319
6320
6321
6322
6323
6324
6325
# File 'lib/models/porcelain.rb', line 6319

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