GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.fromJson(
  1. Map json_
)

Implementation

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