GoogleCloudContactcenterinsightsV1SampleConversationsRequest.fromJson constructor
GoogleCloudContactcenterinsightsV1SampleConversationsRequest.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1SampleConversationsRequest.fromJson(
core.Map json_,
) : this(
destinationDataset: json_.containsKey('destinationDataset')
? GoogleCloudContactcenterinsightsV1Dataset.fromJson(
json_['destinationDataset']
as core.Map<core.String, core.dynamic>,
)
: null,
parent: json_['parent'] as core.String?,
sampleRule: json_.containsKey('sampleRule')
? GoogleCloudContactcenterinsightsV1SampleRule.fromJson(
json_['sampleRule'] as core.Map<core.String, core.dynamic>,
)
: null,
);