Skip to content

Commit fa26107

Browse files
committed
Adding model file for app upload response
1 parent 8a134fe commit fa26107

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
package com.browserstack.automate.model;
2+
3+
import com.fasterxml.jackson.annotation.JsonInclude;
4+
import com.fasterxml.jackson.annotation.JsonProperty;
5+
6+
@JsonInclude(JsonInclude.Include.NON_NULL)
7+
public class AppUploadResponse {
8+
9+
@JsonProperty("app_url")
10+
private String appUrl;
11+
12+
@JsonProperty("custom_id")
13+
private String customId;
14+
15+
@JsonProperty("shareable_id")
16+
private String shareableId;
17+
18+
@JsonProperty("app_url")
19+
public String getAppUrl() {
20+
return appUrl;
21+
}
22+
23+
@JsonProperty("app_url")
24+
public void setAppUrl(String appUrl) {
25+
this.appUrl = appUrl;
26+
}
27+
28+
@JsonProperty("custom_id")
29+
public String getCustomId() {
30+
return customId;
31+
}
32+
33+
@JsonProperty("custom_id")
34+
public void setCustomId(String customId) {
35+
this.customId = customId;
36+
}
37+
38+
@JsonProperty("shareable_id")
39+
public String getShareableId() {
40+
return shareableId;
41+
}
42+
43+
@JsonProperty("shareable_id")
44+
public void setShareableId(String shareableId) {
45+
this.shareableId = shareableId;
46+
}
47+
48+
}

0 commit comments

Comments
 (0)