| |
---|
| | @Field("color") String color, |
---|
| | @Field("token") String token |
---|
| | ); |
---|
| | |
---|
| | @PUT("/{account_id}/books/{book_id}/favoriteCount") |
---|
| | @PUT("/{account_id}/books/{book_id}/registerFavoriteCount") |
---|
| | Call<String> registerFavoriteCount( |
---|
| | @Path("account_id") String account_id, |
---|
| | @Path("book_id") Integer book_id |
---|
| | ); |
---|
| | |
---|
| | @PUT("/{account_id}/books/{book_id}/favoriteCount") |
---|
| | @PUT("/{account_id}/books/{book_id}/unregisterFavoriteCount") |
---|
| | Call<String> unregisterFavoriteCount( |
---|
| | @Path("account_id") String account_id, |
---|
| | @Path("book_id") Integer book_id |
---|
| | ); |
---|
| | |