GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig.fromJson constructor

GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig.fromJson(
    core.Map json_)
    : this(
        buttonId: json_.containsKey('buttonId')
            ? json_['buttonId'] as core.String
            : null,
        deploymentId: json_.containsKey('deploymentId')
            ? json_['deploymentId'] as core.String
            : null,
        endpointDomain: json_.containsKey('endpointDomain')
            ? json_['endpointDomain'] as core.String
            : null,
        organizationId: json_.containsKey('organizationId')
            ? json_['organizationId'] as core.String
            : null,
      );