Class: SDM::RoleAttachmentCreateResponse

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

Overview

RoleAttachmentCreateResponse reports how the RoleAttachments were created in the system.

Instance Attribute Summary collapse

Instance Method Summary collapse

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 meta != nil
		@meta = meta
	end
	if role_attachment != nil
		@role_attachment = role_attachment
	end
	if rate_limit != nil
		@rate_limit = rate_limit
	end
end

Instance Attribute Details

#metaObject

Reserved for future use.



3716
3717
3718
# File 'lib/models/porcelain.rb', line 3716

def meta
  @meta
end

#rate_limitObject

Rate limit information.



3720
3721
3722
# File 'lib/models/porcelain.rb', line 3720

def rate_limit
  @rate_limit
end

#role_attachmentObject

The created RoleAttachment.



3718
3719
3720
# File 'lib/models/porcelain.rb', line 3718

def role_attachment
  @role_attachment
end