GoogleCloudDialogflowCxV3MatchIntentRequest.fromJson constructor

GoogleCloudDialogflowCxV3MatchIntentRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3MatchIntentRequest.fromJson(core.Map json_)
  : this(
      persistParameterChanges: json_['persistParameterChanges'] as core.bool?,
      queryInput: json_.containsKey('queryInput')
          ? GoogleCloudDialogflowCxV3QueryInput.fromJson(
              json_['queryInput'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      queryParams: json_.containsKey('queryParams')
          ? GoogleCloudDialogflowCxV3QueryParameters.fromJson(
              json_['queryParams'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );