Module: PixivApi::Request::Novels
- Included in:
- Client
- Defined in:
- lib/pixiv_api/request/novels.rb
Instance Method Summary collapse
- #my_novels(*args) ⇒ Object
- #novel(id:, **args) ⇒ Object
- #novels(*args) ⇒ Object
- #user_novels(user_id:, **args) ⇒ Object
Instance Method Details
#my_novels(*args) ⇒ Object
4 5 6 |
# File 'lib/pixiv_api/request/novels.rb', line 4 def my_novels(*args) unsupported!('/v1/me/novels.json') end |
#novel(id:, **args) ⇒ Object
16 17 18 |
# File 'lib/pixiv_api/request/novels.rb', line 16 def novel(id:, **args) unsupported!('/v1/novels/:id.json') end |
#novels(*args) ⇒ Object
8 9 10 |
# File 'lib/pixiv_api/request/novels.rb', line 8 def novels(*args) unsupported!('/v1/novels.json') end |
#user_novels(user_id:, **args) ⇒ Object
12 13 14 |
# File 'lib/pixiv_api/request/novels.rb', line 12 def user_novels(user_id:, **args) unsupported!('/v1/users/:user_id/novels.json') end |