Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Unified Diff: generated/googleapis/lib/identitytoolkit/v3.dart

Issue 2226653002: Api-roll 40: 2016-08-08 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Addressed review comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/genomics/v1.dart ('k') | generated/googleapis/lib/script/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/identitytoolkit/v3.dart
diff --git a/generated/googleapis/lib/identitytoolkit/v3.dart b/generated/googleapis/lib/identitytoolkit/v3.dart
index 0d103d6013331034f85e9235b369009d94073030..7c0fa0d77b1d83b491be4171cd5cc1704a8681a9 100644
--- a/generated/googleapis/lib/identitytoolkit/v3.dart
+++ b/generated/googleapis/lib/identitytoolkit/v3.dart
@@ -1030,6 +1030,11 @@ class IdentitytoolkitRelyingpartyCreateAuthUriRequest {
* The URI to which the IDP redirects the user after the federated login flow.
*/
core.String continueUri;
+ /**
+ * The hosted domain to restrict sign-in to accounts at that domain for Google
+ * Apps hosted accounts.
+ */
+ core.String hostedDomain;
/** The email or federated ID of the user. */
core.String identifier;
/** The developer's consumer key for OpenId OAuth Extension */
@@ -1068,6 +1073,9 @@ class IdentitytoolkitRelyingpartyCreateAuthUriRequest {
if (_json.containsKey("continueUri")) {
continueUri = _json["continueUri"];
}
+ if (_json.containsKey("hostedDomain")) {
+ hostedDomain = _json["hostedDomain"];
+ }
if (_json.containsKey("identifier")) {
identifier = _json["identifier"];
}
@@ -1102,6 +1110,9 @@ class IdentitytoolkitRelyingpartyCreateAuthUriRequest {
if (continueUri != null) {
_json["continueUri"] = continueUri;
}
+ if (hostedDomain != null) {
+ _json["hostedDomain"] = hostedDomain;
+ }
if (identifier != null) {
_json["identifier"] = identifier;
}
@@ -2982,6 +2993,8 @@ class VerifyAssertionResponse {
core.String providerId;
/** If idToken is STS id token, then this field will be refresh token. */
core.String refreshToken;
+ /** The screen_name of a Twitter user. */
+ core.String screenName;
/** The timezone of the user. */
core.String timeZone;
/**
@@ -3091,6 +3104,9 @@ class VerifyAssertionResponse {
if (_json.containsKey("refreshToken")) {
refreshToken = _json["refreshToken"];
}
+ if (_json.containsKey("screenName")) {
+ screenName = _json["screenName"];
+ }
if (_json.containsKey("timeZone")) {
timeZone = _json["timeZone"];
}
@@ -3200,6 +3216,9 @@ class VerifyAssertionResponse {
if (refreshToken != null) {
_json["refreshToken"] = refreshToken;
}
+ if (screenName != null) {
+ _json["screenName"] = screenName;
+ }
if (timeZone != null) {
_json["timeZone"] = timeZone;
}
« no previous file with comments | « generated/googleapis/lib/genomics/v1.dart ('k') | generated/googleapis/lib/script/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698