Class: SDM::RoleGrantDeleteResponse

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

Overview

RoleGrantDeleteResponse returns information about a RoleGrant that was deleted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of RoleGrantDeleteResponse.



3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
# File 'lib/models/porcelain.rb', line 3868

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.



3865
3866
3867
# File 'lib/models/porcelain.rb', line 3865

def meta
  @meta
end

#rate_limitObject

Rate limit information.



3867
3868
3869
# File 'lib/models/porcelain.rb', line 3867

def rate_limit
  @rate_limit
end