Class: SDM::RoleGrantGetResponse
- Inherits:
-
Object
- Object
- SDM::RoleGrantGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleGrantGetResponse returns a requested RoleGrant.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#role_grant ⇒ Object
The requested RoleGrant.
Instance Method Summary collapse
-
#initialize(meta: nil, role_grant: nil, rate_limit: nil) ⇒ RoleGrantGetResponse
constructor
A new instance of RoleGrantGetResponse.
Constructor Details
#initialize(meta: nil, role_grant: nil, rate_limit: nil) ⇒ RoleGrantGetResponse
Returns a new instance of RoleGrantGetResponse.
3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 |
# File 'lib/models/porcelain.rb', line 3844 def initialize( meta:nil \ , role_grant:nil \ , rate_limit:nil \ ) if != nil @meta = end if role_grant != nil @role_grant = role_grant end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
3839 3840 3841 |
# File 'lib/models/porcelain.rb', line 3839 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
3843 3844 3845 |
# File 'lib/models/porcelain.rb', line 3843 def rate_limit @rate_limit end |
#role_grant ⇒ Object
The requested RoleGrant.
3841 3842 3843 |
# File 'lib/models/porcelain.rb', line 3841 def role_grant @role_grant end |