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

Side by Side Diff: generated/googleapis/lib/admin/directory_v1.dart

Issue 2649893002: Api-roll 44: 2017-01-23 (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // This is a generated file (see the discoveryapis_generator project). 1 // This is a generated file (see the discoveryapis_generator project).
2 2
3 library googleapis.admin.directory_v1; 3 library googleapis.admin.directory_v1;
4 4
5 import 'dart:core' as core; 5 import 'dart:core' as core;
6 import 'dart:collection' as collection; 6 import 'dart:collection' as collection;
7 import 'dart:async' as async; 7 import 'dart:async' as async;
8 import 'dart:convert' as convert; 8 import 'dart:convert' as convert;
9 9
10 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; 10 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
(...skipping 7978 matching lines...) Expand 10 before | Expand all | Expand 10 after
7989 */ 7989 */
7990 core.Object ims; 7990 core.Object ims;
7991 /** Boolean indicating if user is included in Global Address List */ 7991 /** Boolean indicating if user is included in Global Address List */
7992 core.bool includeInGlobalAddressList; 7992 core.bool includeInGlobalAddressList;
7993 /** Boolean indicating if ip is whitelisted */ 7993 /** Boolean indicating if ip is whitelisted */
7994 core.bool ipWhitelisted; 7994 core.bool ipWhitelisted;
7995 /** Boolean indicating if the user is admin (Read-only) */ 7995 /** Boolean indicating if the user is admin (Read-only) */
7996 core.bool isAdmin; 7996 core.bool isAdmin;
7997 /** Boolean indicating if the user is delegated admin (Read-only) */ 7997 /** Boolean indicating if the user is delegated admin (Read-only) */
7998 core.bool isDelegatedAdmin; 7998 core.bool isDelegatedAdmin;
7999 /** Is 2-step verification enforced (Read-only) */
8000 core.bool isEnforcedIn2Sv;
8001 /** Is enrolled in 2-step verification (Read-only) */
8002 core.bool isEnrolledIn2Sv;
7999 /** Is mailbox setup (Read-only) */ 8003 /** Is mailbox setup (Read-only) */
8000 core.bool isMailboxSetup; 8004 core.bool isMailboxSetup;
8001 /** Kind of resource this is. */ 8005 /** Kind of resource this is. */
8002 core.String kind; 8006 core.String kind;
8003 /** User's last login time. (Read-only) */ 8007 /** User's last login time. (Read-only) */
8004 core.DateTime lastLoginTime; 8008 core.DateTime lastLoginTime;
8005 /** User's name */ 8009 /** User's name */
8006 UserName name; 8010 UserName name;
8007 /** List of non editable aliases (Read-only) */ 8011 /** List of non editable aliases (Read-only) */
8008 core.List<core.String> nonEditableAliases; 8012 core.List<core.String> nonEditableAliases;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
8106 } 8110 }
8107 if (_json.containsKey("ipWhitelisted")) { 8111 if (_json.containsKey("ipWhitelisted")) {
8108 ipWhitelisted = _json["ipWhitelisted"]; 8112 ipWhitelisted = _json["ipWhitelisted"];
8109 } 8113 }
8110 if (_json.containsKey("isAdmin")) { 8114 if (_json.containsKey("isAdmin")) {
8111 isAdmin = _json["isAdmin"]; 8115 isAdmin = _json["isAdmin"];
8112 } 8116 }
8113 if (_json.containsKey("isDelegatedAdmin")) { 8117 if (_json.containsKey("isDelegatedAdmin")) {
8114 isDelegatedAdmin = _json["isDelegatedAdmin"]; 8118 isDelegatedAdmin = _json["isDelegatedAdmin"];
8115 } 8119 }
8120 if (_json.containsKey("isEnforcedIn2Sv")) {
8121 isEnforcedIn2Sv = _json["isEnforcedIn2Sv"];
8122 }
8123 if (_json.containsKey("isEnrolledIn2Sv")) {
8124 isEnrolledIn2Sv = _json["isEnrolledIn2Sv"];
8125 }
8116 if (_json.containsKey("isMailboxSetup")) { 8126 if (_json.containsKey("isMailboxSetup")) {
8117 isMailboxSetup = _json["isMailboxSetup"]; 8127 isMailboxSetup = _json["isMailboxSetup"];
8118 } 8128 }
8119 if (_json.containsKey("kind")) { 8129 if (_json.containsKey("kind")) {
8120 kind = _json["kind"]; 8130 kind = _json["kind"];
8121 } 8131 }
8122 if (_json.containsKey("lastLoginTime")) { 8132 if (_json.containsKey("lastLoginTime")) {
8123 lastLoginTime = core.DateTime.parse(_json["lastLoginTime"]); 8133 lastLoginTime = core.DateTime.parse(_json["lastLoginTime"]);
8124 } 8134 }
8125 if (_json.containsKey("name")) { 8135 if (_json.containsKey("name")) {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
8215 } 8225 }
8216 if (ipWhitelisted != null) { 8226 if (ipWhitelisted != null) {
8217 _json["ipWhitelisted"] = ipWhitelisted; 8227 _json["ipWhitelisted"] = ipWhitelisted;
8218 } 8228 }
8219 if (isAdmin != null) { 8229 if (isAdmin != null) {
8220 _json["isAdmin"] = isAdmin; 8230 _json["isAdmin"] = isAdmin;
8221 } 8231 }
8222 if (isDelegatedAdmin != null) { 8232 if (isDelegatedAdmin != null) {
8223 _json["isDelegatedAdmin"] = isDelegatedAdmin; 8233 _json["isDelegatedAdmin"] = isDelegatedAdmin;
8224 } 8234 }
8235 if (isEnforcedIn2Sv != null) {
8236 _json["isEnforcedIn2Sv"] = isEnforcedIn2Sv;
8237 }
8238 if (isEnrolledIn2Sv != null) {
8239 _json["isEnrolledIn2Sv"] = isEnrolledIn2Sv;
8240 }
8225 if (isMailboxSetup != null) { 8241 if (isMailboxSetup != null) {
8226 _json["isMailboxSetup"] = isMailboxSetup; 8242 _json["isMailboxSetup"] = isMailboxSetup;
8227 } 8243 }
8228 if (kind != null) { 8244 if (kind != null) {
8229 _json["kind"] = kind; 8245 _json["kind"] = kind;
8230 } 8246 }
8231 if (lastLoginTime != null) { 8247 if (lastLoginTime != null) {
8232 _json["lastLoginTime"] = (lastLoginTime).toIso8601String(); 8248 _json["lastLoginTime"] = (lastLoginTime).toIso8601String();
8233 } 8249 }
8234 if (name != null) { 8250 if (name != null) {
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
9214 } 9230 }
9215 if (items != null) { 9231 if (items != null) {
9216 _json["items"] = items.map((value) => (value).toJson()).toList(); 9232 _json["items"] = items.map((value) => (value).toJson()).toList();
9217 } 9233 }
9218 if (kind != null) { 9234 if (kind != null) {
9219 _json["kind"] = kind; 9235 _json["kind"] = kind;
9220 } 9236 }
9221 return _json; 9237 return _json;
9222 } 9238 }
9223 } 9239 }
OLDNEW
« no previous file with comments | « generated/googleapis/lib/adexchangebuyer/v1_4.dart ('k') | generated/googleapis/lib/androidenterprise/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698