GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.fromJson constructor
GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.fromJson(
- 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(),
);