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