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