File tree Expand file tree Collapse file tree
api/src/main/java/com/creatubbles/api/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ public class Creation {
8787 @ JsonProperty ("play_iframe_url" )
8888 private String playIframeUrl ;
8989
90+ @ JsonProperty ("video_480_url" )
91+ private String video480Url ;
92+
93+ @ JsonProperty ("video_720_url" )
94+ private String video720Url ;
95+
9096 @ JsonCreator
9197 public Creation () {
9298 }
@@ -234,6 +240,16 @@ public List<User> getCreators() {
234240 return creators ;
235241 }
236242
243+ @ Nullable
244+ public String getVideo480Url () {
245+ return video480Url ;
246+ }
247+
248+ @ Nullable
249+ public String getVideo720Url () {
250+ return video720Url ;
251+ }
252+
237253 @ Override
238254 public String toString () {
239255 return "Creation{" +
@@ -260,6 +276,8 @@ public String toString() {
260276 ", reflectionVideoUrl='" + reflectionVideoUrl + '\'' +
261277 ", objFileUrl='" + objFileUrl + '\'' +
262278 ", playIframeUrl='" + playIframeUrl + '\'' +
279+ ", video480Url='" + video480Url + '\'' +
280+ ", video720Url='" + video720Url + '\'' +
263281 '}' ;
264282 }
265283
Original file line number Diff line number Diff line change @@ -220,7 +220,6 @@ public Creation getBodyCreation() {
220220 public String toString () {
221221 return "CustomStyle{" +
222222 "id='" + id + '\'' +
223- ", user=" + user +
224223 ", headerCreation=" + headerCreation +
225224 ", bodyCreation=" + bodyCreation +
226225 ", name='" + name + '\'' +
You can’t perform that action at this time.
0 commit comments