File tree Expand file tree Collapse file tree
src/main/java/com/spotify/requests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ public class SingleCategoriesGet extends AbstractRequest {
1313
1414
1515 @ SpotifySubRequest
16- private final String category_id ;
16+ private final String id ;
1717
1818 @ SpotifyRequestField
1919 private Market country ;
2020
2121 @ SpotifyRequestField
2222 private String locale ;
2323
24- public SingleCategoriesGet (String category_id ) {
25- this .category_id = category_id ;
24+ public SingleCategoriesGet (String id ) {
25+ this .id = id ;
2626 }
2727
2828
Original file line number Diff line number Diff line change 1212public class CategoriesPlaylistsGet extends AbstractRequest {
1313
1414 @ SpotifySubRequest
15- private final String category_id ;
15+ private final String id ;
1616
1717 @ SpotifyRequestField
1818 private Market country ;
@@ -24,7 +24,7 @@ public class CategoriesPlaylistsGet extends AbstractRequest {
2424 private int offset ;
2525
2626 public CategoriesPlaylistsGet (String id ) {
27- this .category_id = id ;
27+ this .id = id ;
2828 }
2929
3030}
Original file line number Diff line number Diff line change 1212public class PlaylistGet extends AbstractRequest {
1313
1414 @ SpotifySubRequest
15- private final String playlist_id ;
15+ private final String id ;
1616
1717 @ SpotifyRequestField
1818 private Market market ;
@@ -24,7 +24,7 @@ public class PlaylistGet extends AbstractRequest {
2424 private String [] additionalTypes ;
2525
2626 public PlaylistGet (String id ) {
27- this .playlist_id = id ;
27+ this .id = id ;
2828 }
2929
3030}
Original file line number Diff line number Diff line change 88public class PlaylistImageGet extends AbstractRequest {
99
1010 @ SpotifySubRequest
11- private final String playlist_id ;
11+ private final String id ;
1212
1313 public PlaylistImageGet (String id ) {
14- this .playlist_id = id ;
14+ this .id = id ;
1515 }
1616}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class PlaylistTracksGet extends AbstractRequest {
1313
1414
1515 @ SpotifySubRequest
16- private final String playlist_id ;
16+ private final String id ;
1717
1818 @ SpotifyRequestField
1919 private Market market ;
@@ -31,7 +31,7 @@ public class PlaylistTracksGet extends AbstractRequest {
3131 private String [] additionalTypes ;
3232
3333 public PlaylistTracksGet (String id ) {
34- this .playlist_id = id ;
34+ this .id = id ;
3535 }
3636
3737
You can’t perform that action at this time.
0 commit comments