GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest.fromJson constructor
GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest.fromJson(
core.Map json_,
) : this(
conversations: json_.containsKey('conversations')
? GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequestConversations.fromJson(
json_['conversations'] as core.Map<core.String, core.dynamic>,
)
: null,
correlationConfig: json_.containsKey('correlationConfig')
? GoogleCloudContactcenterinsightsV1CorrelationConfig.fromJson(
json_['correlationConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
filter: json_['filter'] as core.String?,
maxSampleCount: json_['maxSampleCount'] as core.int?,
);