GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson constructor

GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_['nextPageToken'] as core.String?,
        securityActions: (json_['securityActions'] as core.List?)
            ?.map((value) => GoogleCloudApigeeV1SecurityAction.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );