GoogleIdentityAccesscontextmanagerV1EgressTo.fromJson constructor
GoogleIdentityAccesscontextmanagerV1EgressTo.fromJson(
- Map json_
Implementation
GoogleIdentityAccesscontextmanagerV1EgressTo.fromJson(core.Map json_)
: this(
externalResources: json_.containsKey('externalResources')
? (json_['externalResources'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
operations: json_.containsKey('operations')
? (json_['operations'] as core.List)
.map((value) =>
GoogleIdentityAccesscontextmanagerV1ApiOperation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
resources: json_.containsKey('resources')
? (json_['resources'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);