Class: SDM::RoleAttachmentCreateResponse
- Inherits:
-
Object
- Object
- SDM::RoleAttachmentCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
RoleAttachmentCreateResponse reports how the RoleAttachments were created in the system.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
-
#role_attachment ⇒ Object
The created RoleAttachment.
Instance Method Summary collapse
-
#initialize(meta: nil, role_attachment: nil, rate_limit: nil) ⇒ RoleAttachmentCreateResponse
constructor
A new instance of RoleAttachmentCreateResponse.
Constructor Details
#initialize(meta: nil, role_attachment: nil, rate_limit: nil) ⇒ RoleAttachmentCreateResponse
Returns a new instance of RoleAttachmentCreateResponse.
3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 |
# File 'lib/models/porcelain.rb', line 3721 def initialize( meta:nil \ , role_attachment:nil \ , rate_limit:nil \ ) if != nil @meta = end if != nil @role_attachment = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
3716 3717 3718 |
# File 'lib/models/porcelain.rb', line 3716 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
3720 3721 3722 |
# File 'lib/models/porcelain.rb', line 3720 def rate_limit @rate_limit end |
#role_attachment ⇒ Object
The created RoleAttachment.
3718 3719 3720 |
# File 'lib/models/porcelain.rb', line 3718 def @role_attachment end |