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