Class: Onlyfans::Models::UserLists::UserRemoveResponse::Data::List::User
Defined Under Namespace
Classes: AvatarThumbs
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], 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, avatar: nil, avatar_thumbs: nil, is_verified: nil, name: nil, username: nil, view: nil) ⇒ Object
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
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 241
class User < Onlyfans::Internal::Type::BaseModel
optional :id, Integer
optional :avatar, String
optional :avatar_thumbs,
-> { Onlyfans::Models::UserLists::UserRemoveResponse::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
|
Instance Attribute Details
#avatar ⇒ String?
250
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 250
optional :avatar, String
|
#id ⇒ Integer?
245
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 245
optional :id, Integer
|
#is_verified ⇒ Boolean?
262
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 262
optional :is_verified, Onlyfans::Internal::Type::Boolean, api_name: :isVerified
|
#name ⇒ String?
267
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 267
optional :name, String
|
#username ⇒ String?
272
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 272
optional :username, String
|
#view ⇒ String?
277
|
# File 'lib/onlyfans/models/user_lists/user_remove_response.rb', line 277
optional :view, String
|