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