GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.fromJson constructor
GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.fromJson(
core.Map json_)
: this(
actions: json_.containsKey('actions')
? (json_['actions'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
entities: json_.containsKey('entities')
? (json_['entities'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);