Class: SDM::AccountAttachmentCreateResponse

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

Overview

AccountAttachmentCreateResponse reports how the AccountAttachments were created in the system.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, account_attachment: nil, rate_limit: nil) ⇒ AccountAttachmentCreateResponse

Returns a new instance of AccountAttachmentCreateResponse.



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/models/porcelain.rb', line 100

def initialize(
	meta:nil \
,
	account_attachment:nil \
,
	rate_limit:nil \
)
	if meta != nil
		@meta = meta
	end
	if  != nil
		@account_attachment = 
	end
	if rate_limit != nil
		@rate_limit = rate_limit
	end
end

Instance Attribute Details

#account_attachmentObject

The created AccountAttachment.



97
98
99
# File 'lib/models/porcelain.rb', line 97

def 
  @account_attachment
end

#metaObject

Reserved for future use.



95
96
97
# File 'lib/models/porcelain.rb', line 95

def meta
  @meta
end

#rate_limitObject

Rate limit information.



99
100
101
# File 'lib/models/porcelain.rb', line 99

def rate_limit
  @rate_limit
end