GoogleCloudKmsInventoryV1SearchProtectedResourcesResponse.fromJson constructor
GoogleCloudKmsInventoryV1SearchProtectedResourcesResponse.fromJson(
- Map json_
Implementation
GoogleCloudKmsInventoryV1SearchProtectedResourcesResponse.fromJson(
core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
protectedResources: (json_['protectedResources'] as core.List?)
?.map((value) =>
GoogleCloudKmsInventoryV1ProtectedResource.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);