ListSecurityHealthAnalyticsCustomModulesResponse.fromJson constructor

ListSecurityHealthAnalyticsCustomModulesResponse.fromJson(
  1. Map json_
)

Implementation

ListSecurityHealthAnalyticsCustomModulesResponse.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(),
      );