GoogleIdentityAccesscontextmanagerV1EgressFrom.fromJson constructor
GoogleIdentityAccesscontextmanagerV1EgressFrom.fromJson(
- Map json_
Implementation
GoogleIdentityAccesscontextmanagerV1EgressFrom.fromJson(core.Map json_)
: this(
identities: (json_['identities'] as core.List?)
?.map((value) => value as core.String)
.toList(),
identityType: json_['identityType'] as core.String?,
sourceRestriction: json_['sourceRestriction'] as core.String?,
sources: (json_['sources'] as core.List?)
?.map((value) =>
GoogleIdentityAccesscontextmanagerV1EgressSource.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);