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-connectors/v2/2.0.0/com/google/api/services/connectors/v2/model/AuthCodeData.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,13 @@ public final class AuthCodeData extends com.google.api.client.json.GenericJson {
51
51
@com.google.api.client.util.Key
52
52
privatejava.lang.StringredirectUri;
53
53
54
+
/**
55
+
* Scopes the connection will request when the user performs the auth code flow.
56
+
* The value may be {@code null}.
57
+
*/
58
+
@com.google.api.client.util.Key
59
+
privatejava.util.List<java.lang.String> scopes;
60
+
54
61
/**
55
62
* OAuth authorization code.
56
63
* @return value or {@code null} for none
@@ -102,6 +109,23 @@ public AuthCodeData setRedirectUri(java.lang.String redirectUri) {
102
109
returnthis;
103
110
}
104
111
112
+
/**
113
+
* Scopes the connection will request when the user performs the auth code flow.
0 commit comments