File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
src/main/java/com/browserstack/automate/model Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments