Class: Spotted::Models::Me::FollowingListResponse::Artists
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Spotted::Models::Me::FollowingListResponse::Artists
- Defined in:
- lib/spotted/models/me/following_list_response.rb
Overview
Defined Under Namespace
Classes: Cursors
Instance Attribute Summary collapse
-
#cursors ⇒ Spotted::Models::Me::FollowingListResponse::Artists::Cursors?
The cursors used to find the next set of items.
-
#href ⇒ String?
A link to the Web API endpoint returning the full result of the request.
- #items ⇒ Array<Spotted::Models::ArtistObject>?
-
#limit ⇒ Integer?
The maximum number of items in the response (as set in the query or by default).
-
#next_ ⇒ String?
URL to the next page of items.
-
#total ⇒ Integer?
The total number of items available to return.
Instance Method Summary collapse
-
#initialize(cursors: nil, href: nil, items: nil, limit: nil, next_: nil, total: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Artists for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], 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
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(cursors: nil, href: nil, items: nil, limit: nil, next_: nil, total: nil) ⇒ Object
Some parameter documentations has been truncated, see Spotted::Models::Me::FollowingListResponse::Artists for more details.
|
|
# File 'lib/spotted/models/me/following_list_response.rb', line 53
|
Instance Attribute Details
#cursors ⇒ Spotted::Models::Me::FollowingListResponse::Artists::Cursors?
The cursors used to find the next set of items.
22 |
# File 'lib/spotted/models/me/following_list_response.rb', line 22 optional :cursors, -> { Spotted::Models::Me::FollowingListResponse::Artists::Cursors } |
#href ⇒ String?
A link to the Web API endpoint returning the full result of the request.
28 |
# File 'lib/spotted/models/me/following_list_response.rb', line 28 optional :href, String |
#items ⇒ Array<Spotted::Models::ArtistObject>?
33 |
# File 'lib/spotted/models/me/following_list_response.rb', line 33 optional :items, -> { Spotted::Internal::Type::ArrayOf[Spotted::ArtistObject] } |
#limit ⇒ Integer?
The maximum number of items in the response (as set in the query or by default).
39 |
# File 'lib/spotted/models/me/following_list_response.rb', line 39 optional :limit, Integer |
#next_ ⇒ String?
URL to the next page of items. ( ‘null` if none)
45 |
# File 'lib/spotted/models/me/following_list_response.rb', line 45 optional :next_, String, api_name: :next |
#total ⇒ Integer?
The total number of items available to return.
51 |
# File 'lib/spotted/models/me/following_list_response.rb', line 51 optional :total, Integer |