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