We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The export_agent method is missing the data_format parameter which can be supplied by users to determine the output data format type.
data_format
Refs for data_format here: https://github.com/googleapis/python-dialogflow-cx/blob/main/google/cloud/dialogflowcx_v3beta1/types/agent.py#L355
The text was updated successfully, but these errors were encountered:
Note that the data_format is provided as a proto Enum: https://github.com/googleapis/python-dialogflow-cx/blob/main/google/cloud/dialogflowcx_v3beta1/types/agent.py#L384
We should simplify this and allow the user to provide str inputs like blob, json and then map them to the enum value as needed.
str
blob
json
Sorry, something went wrong.
No branches or pull requests
The export_agent method is missing the
data_format
parameter which can be supplied by users to determine the output data format type.Refs for
data_format
here:https://github.com/googleapis/python-dialogflow-cx/blob/main/google/cloud/dialogflowcx_v3beta1/types/agent.py#L355
The text was updated successfully, but these errors were encountered: