Class: Onlyfans::Models::TransactionListResponse::Data::List
Defined Under Namespace
Classes: User
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#initialize(id: nil, amount: nil, created_at: nil, currency: nil, description: nil, fee: nil, net: nil, payout_pending_days: nil, status: nil, tax_amount: nil, type: nil, user: nil, vat_amount: nil) ⇒ Object
constructor
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(id: nil, amount: nil, created_at: nil, currency: nil, description: nil, fee: nil, net: nil, payout_pending_days: nil, status: nil, tax_amount: nil, type: nil, user: nil, vat_amount: nil) ⇒ Object
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 159
class List < Onlyfans::Internal::Type::BaseModel
optional :id, String
optional :amount, Float
optional :created_at, String, api_name: :createdAt
optional :currency, String
optional :description, String
optional :fee, Integer
optional :net, Float
optional :payout_pending_days, Integer, api_name: :payoutPendingDays
optional :status, String
optional :tax_amount, Integer, api_name: :taxAmount
optional :type, String
optional :user, -> { Onlyfans::Models::TransactionListResponse::Data::List::User }
optional :vat_amount, Integer, api_name: :vatAmount
class User < Onlyfans::Internal::Type::BaseModel
optional :id, Integer
optional :avatar, String
optional :avatar_thumbs,
-> { Onlyfans::Models::TransactionListResponse::Data::List::User::AvatarThumbs },
api_name: :avatarThumbs
optional :is_verified, Onlyfans::Internal::Type::Boolean, api_name: :isVerified
optional :name, String
optional :username, String
optional :view, String
class AvatarThumbs < Onlyfans::Internal::Type::BaseModel
optional :c144, String
optional :c50, String
end
end
end
|
Instance Attribute Details
#amount ⇒ Float?
168
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 168
optional :amount, Float
|
#created_at ⇒ String?
173
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 173
optional :created_at, String, api_name: :createdAt
|
#currency ⇒ String?
178
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 178
optional :currency, String
|
#description ⇒ String?
183
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 183
optional :description, String
|
#fee ⇒ Integer?
188
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 188
optional :fee, Integer
|
#id ⇒ String?
163
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 163
optional :id, String
|
#net ⇒ Float?
193
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 193
optional :net, Float
|
#payout_pending_days ⇒ Integer?
198
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 198
optional :payout_pending_days, Integer, api_name: :payoutPendingDays
|
#status ⇒ String?
203
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 203
optional :status, String
|
#tax_amount ⇒ Integer?
208
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 208
optional :tax_amount, Integer, api_name: :taxAmount
|
#type ⇒ String?
213
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 213
optional :type, String
|
#vat_amount ⇒ Integer?
223
|
# File 'lib/onlyfans/models/transaction_list_response.rb', line 223
optional :vat_amount, Integer, api_name: :vatAmount
|