Class: SDM::RoleDeleteResponse
- Inherits:
-
Object
- Object
- SDM::RoleDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleDeleteResponse returns information about a Role that was deleted.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil) ⇒ RoleDeleteResponse
constructor
A new instance of RoleDeleteResponse.
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ RoleDeleteResponse
Returns a new instance of RoleDeleteResponse.
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 |
# File 'lib/models/porcelain.rb', line 3994 def initialize( meta:nil \ , rate_limit:nil \ ) if != nil @meta = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
3991 3992 3993 |
# File 'lib/models/porcelain.rb', line 3991 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
3993 3994 3995 |
# File 'lib/models/porcelain.rb', line 3993 def rate_limit @rate_limit end |