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.



3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
# File 'lib/models/porcelain.rb', line 3771

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.



3768
3769
3770
# File 'lib/models/porcelain.rb', line 3768

def meta
  @meta
end

#rate_limitObject

Rate limit information.



3770
3771
3772
# File 'lib/models/porcelain.rb', line 3770

def rate_limit
  @rate_limit
end