MatchIntentRequest constructor
MatchIntentRequest({
- String? session,
- QueryParameters? queryParams,
- QueryInput? queryInput,
Implementation
factory MatchIntentRequest({
$core.String? session,
QueryParameters? queryParams,
QueryInput? queryInput,
}) {
final _result = create();
if (session != null) {
_result.session = session;
}
if (queryParams != null) {
_result.queryParams = queryParams;
}
if (queryInput != null) {
_result.queryInput = queryInput;
}
return _result;
}