GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.fromJson(
  1. Map json_
)

Implementation

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