ListEffectiveSecurityHealthAnalyticsCustomModulesResponse.fromJson constructor

ListEffectiveSecurityHealthAnalyticsCustomModulesResponse.fromJson(
  1. Map json_
)

Implementation

ListEffectiveSecurityHealthAnalyticsCustomModulesResponse.fromJson(
    core.Map json_)
    : this(
        effectiveSecurityHealthAnalyticsCustomModules: json_
                .containsKey('effectiveSecurityHealthAnalyticsCustomModules')
            ? (json_['effectiveSecurityHealthAnalyticsCustomModules']
                    as core.List)
                .map((value) =>
                    GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );