ListDescendantSecurityHealthAnalyticsCustomModulesResponse.fromJson constructor

ListDescendantSecurityHealthAnalyticsCustomModulesResponse.fromJson(
  1. Map json_
)

Implementation

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