GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.fromJson constructor

GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.fromJson(
    core.Map json_)
    : this(
        agentChannel: json_.containsKey('agentChannel')
            ? json_['agentChannel'] as core.int
            : null,
        agentId: json_.containsKey('agentId')
            ? json_['agentId'] as core.String
            : null,
        customerChannel: json_.containsKey('customerChannel')
            ? json_['customerChannel'] as core.int
            : null,
      );