You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/model/AppLinkData.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,13 @@ public final class AppLinkData extends com.google.api.client.json.GenericJson {
36
36
@com.google.api.client.util.Key
37
37
privateAppLinkDataAppLinkInfoandroidAppLinkInfo;
38
38
39
+
/**
40
+
* Optional display text for the app link button. Character limit is 30.
41
+
* The value may be {@code null}.
42
+
*/
43
+
@com.google.api.client.util.Key
44
+
privateLocalizedStringdisplayText;
45
+
39
46
/**
40
47
* Deprecated. Links to open iOS apps are not supported.
41
48
* The value may be {@code null}.
@@ -67,6 +74,23 @@ public AppLinkData setAndroidAppLinkInfo(AppLinkDataAppLinkInfo androidAppLinkIn
67
74
returnthis;
68
75
}
69
76
77
+
/**
78
+
* Optional display text for the app link button. Character limit is 30.
79
+
* @return value or {@code null} for none
80
+
*/
81
+
publicLocalizedStringgetDisplayText() {
82
+
returndisplayText;
83
+
}
84
+
85
+
/**
86
+
* Optional display text for the app link button. Character limit is 30.
87
+
* @param displayText displayText or {@code null} for none
0 commit comments