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