Movatterモバイル変換


[0]ホーム

URL:


dialogflow

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:0

Details

Repository

github.com/googleapis/google-api-go-client

Links

Documentation

Overview

Package dialogflow provides access to the Dialogflow API.

This package is DEPRECATED. Use package cloud.google.com/go/dialogflow/apiv2 instead.

For product documentation, see:https://cloud.google.com/dialogflow/

Library status

These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany new features.

When possible, we recommend using our newer[Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/dialogflow/v3beta1"...ctx := context.Background()dialogflowService, err := dialogflow.NewService(ctx)

In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

By default, all available scopes (see "Constants") are used to authenticate.To restrict scopes, usegoogle.golang.org/api/option.WithScopes:

dialogflowService, err := dialogflow.NewService(ctx, option.WithScopes(dialogflow.DialogflowScope))

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

dialogflowService, err := dialogflow.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)dialogflowService, err := dialogflow.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
const (// See, edit, configure, and delete your Google Cloud data and see the email// address for your Google Account.CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"// View, manage and query your Dialogflow agentsDialogflowScope = "https://www.googleapis.com/auth/dialogflow")

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

typeGoogleCloudDialogflowCxV3AdvancedSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3AdvancedSettings struct {// AudioExportGcsDestination: If present, incoming audio is exported by// Dialogflow to the configured Google Cloud Storage destination. Exposed at// the following levels: - Agent level - Flow levelAudioExportGcsDestination *GoogleCloudDialogflowCxV3GcsDestination `json:"audioExportGcsDestination,omitempty"`// DtmfSettings: Settings for DTMF. Exposed at the following levels: - Agent// level - Flow level - Page level - Parameter level.DtmfSettings *GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings `json:"dtmfSettings,omitempty"`// LoggingSettings: Settings for logging. Settings for Dialogflow History,// Contact Center messages, StackDriver logs, and speech logging. Exposed at// the following levels: - Agent level.LoggingSettings *GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings `json:"loggingSettings,omitempty"`// SpeechSettings: Settings for speech to text detection. Exposed at the// following levels: - Agent level - Flow level - Page level - Parameter levelSpeechSettings *GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings `json:"speechSettings,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioExportGcsDestination")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioExportGcsDestination") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3AdvancedSettings: Hierarchical advanced settingsfor agent/flow/page/fulfillment/parameter. Settings exposed at lower leveloverrides the settings exposed at higher level. Overriding occurs at thesub-setting level. For example, the playback_interruption_settings atfulfillment level only overrides the playback_interruption_settings at theagent level, leaving other settings at the agent level unchanged. DTMFsettings does not override each other. DTMF settings set at different levelsdefine DTMF detections running in parallel. Hierarchy:Agent->Flow->Page->Fulfillment/Parameter.

func (GoogleCloudDialogflowCxV3AdvancedSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings struct {// Enabled: If true, incoming audio is processed for DTMF (dual tone multi// frequency) events. For example, if the caller presses a button on their// telephone keypad and DTMF processing is enabled, Dialogflow will detect the// event (e.g. a "3" was pressed) in the incoming audio and pass the event to// the bot to drive business logic (e.g. when 3 is pressed, return the account// balance).Enabledbool `json:"enabled,omitempty"`// EndpointingTimeoutDuration: Endpoint timeout setting for matching dtmf input// to regex.EndpointingTimeoutDurationstring `json:"endpointingTimeoutDuration,omitempty"`// FinishDigit: The digit that terminates a DTMF digit sequence.FinishDigitstring `json:"finishDigit,omitempty"`// InterdigitTimeoutDuration: Interdigit timeout setting for matching dtmf// input to regex.InterdigitTimeoutDurationstring `json:"interdigitTimeoutDuration,omitempty"`// MaxDigits: Max length of DTMF digits.MaxDigitsint64 `json:"maxDigits,omitempty"`// ForceSendFields is a list of field names (e.g. "Enabled") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Enabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings: Define behaviors forDTMF (dual tone multi frequency).

func (GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings struct {// EnableConsentBasedRedaction: Enables consent-based end-user input redaction,// if true, a pre-defined session parameter// `$session.params.conversation-redaction` will be used to determine if the// utterance should be redacted.EnableConsentBasedRedactionbool `json:"enableConsentBasedRedaction,omitempty"`// EnableInteractionLogging: Enables DF Interaction logging.EnableInteractionLoggingbool `json:"enableInteractionLogging,omitempty"`// EnableStackdriverLogging: Enables Google Cloud Logging.EnableStackdriverLoggingbool `json:"enableStackdriverLogging,omitempty"`// ForceSendFields is a list of field names (e.g.// "EnableConsentBasedRedaction") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableConsentBasedRedaction") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings: Define behaviorson logging.

func (GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettingsadded inv0.170.0

type GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings struct {// EndpointerSensitivity: Sensitivity of the speech model that detects the end// of speech. Scale from 0 to 100.EndpointerSensitivityint64 `json:"endpointerSensitivity,omitempty"`// Models: Mapping from language to Speech-to-Text model. The mapped// Speech-to-Text model will be selected for requests from its corresponding// language. For more information, see Speech models// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).Models map[string]string `json:"models,omitempty"`// NoSpeechTimeout: Timeout before detecting no speech.NoSpeechTimeoutstring `json:"noSpeechTimeout,omitempty"`// UseTimeoutBasedEndpointing: Use timeout based endpointing, interpreting// endpointer sensitivity as seconds of timeout value.UseTimeoutBasedEndpointingbool `json:"useTimeoutBasedEndpointing,omitempty"`// ForceSendFields is a list of field names (e.g. "EndpointerSensitivity") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndpointerSensitivity") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings: Define behaviors ofspeech to text detection.

func (GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings)MarshalJSONadded inv0.170.0

typeGoogleCloudDialogflowCxV3AudioInputadded inv0.37.0

type GoogleCloudDialogflowCxV3AudioInput struct {// Audio: The natural language speech audio to be processed. A single request// can contain up to 2 minutes of speech audio data. The transcribed text// cannot contain more than 256 bytes. For non-streaming audio detect intent,// both `config` and `audio` must be provided. For streaming audio detect// intent, `config` must be provided in the first request and `audio` must be// provided in all following requests.Audiostring `json:"audio,omitempty"`// Config: Required. Instructs the speech recognizer how to process the speech// audio.Config *GoogleCloudDialogflowCxV3InputAudioConfig `json:"config,omitempty"`// ForceSendFields is a list of field names (e.g. "Audio") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Audio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3AudioInput: Represents the natural speech audio tobe processed.

func (GoogleCloudDialogflowCxV3AudioInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3BargeInConfigadded inv0.152.0

type GoogleCloudDialogflowCxV3BargeInConfig struct {// NoBargeInDuration: Duration that is not eligible for barge-in at the// beginning of the input audio.NoBargeInDurationstring `json:"noBargeInDuration,omitempty"`// TotalDuration: Total duration for the playback at the beginning of the input// audio.TotalDurationstring `json:"totalDuration,omitempty"`// ForceSendFields is a list of field names (e.g. "NoBargeInDuration") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NoBargeInDuration") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3BargeInConfig: Configuration of the barge-inbehavior. Barge-in instructs the API to return a detected utterance at aproper time while the client is playing back the response audio from aprevious request. When the client sees the utterance, it should stop theplayback and immediately get ready for receiving the responses for thecurrent request. The barge-in handling requires the client to startstreaming audio input as soon as it starts playing back the audio from theprevious response. The playback is modeled into two phases: * No barge-inphase: which goes first and during which speech detection should not becarried out. * Barge-in phase: which follows the no barge-in phase andduring which the API starts speech detection and may inform the client thatan utterance has been detected. Note that no-speech event is not expected inthis phase. The client provides this configuration in terms of the durationsof those two phases. The durations are measured in terms of the audio lengthfrom the start of the input audio. No-speech event is a response withEND_OF_UTTERANCE without any transcript following up.

func (GoogleCloudDialogflowCxV3BargeInConfig)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3BatchRunTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata struct {// Errors: The test errors.Errors []*GoogleCloudDialogflowCxV3TestError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata: Metadata returned forthe TestCases.BatchRunTestCases long running operation.

func (GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3BatchRunTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3BatchRunTestCasesResponse struct {// Results: The test case results. The detailed conversation turns are empty in// this response.Results []*GoogleCloudDialogflowCxV3TestCaseResult `json:"results,omitempty"`// ForceSendFields is a list of field names (e.g. "Results") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Results") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3BatchRunTestCasesResponse: The response message forTestCases.BatchRunTestCases.

func (GoogleCloudDialogflowCxV3BatchRunTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ContinuousTestResultadded inv0.48.0

type GoogleCloudDialogflowCxV3ContinuousTestResult struct {// Name: The resource name for the continuous test result. Format:// `projects//locations//agents//environments//continuousTestResults/`.Namestring `json:"name,omitempty"`// Result: The result of this continuous test run, i.e. whether all the tests// in this continuous test run pass or not.//// Possible values://   "AGGREGATED_TEST_RESULT_UNSPECIFIED" - Not specified. Should never be// used.//   "PASSED" - All the tests passed.//   "FAILED" - At least one test did not pass.Resultstring `json:"result,omitempty"`// RunTime: Time when the continuous testing run starts.RunTimestring `json:"runTime,omitempty"`// TestCaseResults: A list of individual test case results names in this// continuous test run.TestCaseResults []string `json:"testCaseResults,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ContinuousTestResult: Represents a result fromrunning a test case in an agent environment.

func (GoogleCloudDialogflowCxV3ContinuousTestResult)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3ConversationSignalsadded inv0.107.0

type GoogleCloudDialogflowCxV3ConversationSignals struct {// TurnSignals: Required. Turn signals for the current turn.TurnSignals *GoogleCloudDialogflowCxV3TurnSignals `json:"turnSignals,omitempty"`// ForceSendFields is a list of field names (e.g. "TurnSignals") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TurnSignals") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ConversationSignals: This message is used to holdall the Conversation Signals data, which will be converted to JSON andexported to BigQuery.

func (GoogleCloudDialogflowCxV3ConversationSignals)MarshalJSONadded inv0.107.0

typeGoogleCloudDialogflowCxV3ConversationTurnadded inv0.37.0

type GoogleCloudDialogflowCxV3ConversationTurn struct {// UserInput: The user input.UserInput *GoogleCloudDialogflowCxV3ConversationTurnUserInput `json:"userInput,omitempty"`// VirtualAgentOutput: The virtual agent output.VirtualAgentOutput *GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput `json:"virtualAgentOutput,omitempty"`// ForceSendFields is a list of field names (e.g. "UserInput") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "UserInput") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ConversationTurn: One interaction between a humanand virtual agent. The human provides some input and the virtual agentprovides a response.

func (GoogleCloudDialogflowCxV3ConversationTurn)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ConversationTurnUserInputadded inv0.37.0

type GoogleCloudDialogflowCxV3ConversationTurnUserInput struct {// EnableSentimentAnalysis: Whether sentiment analysis is enabled.EnableSentimentAnalysisbool `json:"enableSentimentAnalysis,omitempty"`// InjectedParameters: Parameters that need to be injected into the// conversation during intent detection.InjectedParametersgoogleapi.RawMessage `json:"injectedParameters,omitempty"`// Input: Supports text input, event input, dtmf input in the test case.Input *GoogleCloudDialogflowCxV3QueryInput `json:"input,omitempty"`// IsWebhookEnabled: If webhooks should be allowed to trigger in response to// the user utterance. Often if parameters are injected, webhooks should not be// enabled.IsWebhookEnabledbool `json:"isWebhookEnabled,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableSentimentAnalysis") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableSentimentAnalysis") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ConversationTurnUserInput: The input from the humanuser.

func (GoogleCloudDialogflowCxV3ConversationTurnUserInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutputadded inv0.37.0

type GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput struct {// CurrentPage: The Page on which the utterance was spoken. Only name and// displayName will be set.CurrentPage *GoogleCloudDialogflowCxV3Page `json:"currentPage,omitempty"`// DiagnosticInfo: Required. Input only. The diagnostic info output for the// turn. Required to calculate the testing coverage.DiagnosticInfogoogleapi.RawMessage `json:"diagnosticInfo,omitempty"`// Differences: Output only. If this is part of a result conversation turn, the// list of differences between the original run and the replay for this output,// if any.Differences []*GoogleCloudDialogflowCxV3TestRunDifference `json:"differences,omitempty"`// SessionParameters: The session parameters available to the bot at this// point.SessionParametersgoogleapi.RawMessage `json:"sessionParameters,omitempty"`// Status: Response error from the agent in the test result. If set, other// output is empty.Status *GoogleRpcStatus `json:"status,omitempty"`// TextResponses: The text responses from the agent for the turn.TextResponses []*GoogleCloudDialogflowCxV3ResponseMessageText `json:"textResponses,omitempty"`// TriggeredIntent: The Intent that triggered the response. Only name and// displayName will be set.TriggeredIntent *GoogleCloudDialogflowCxV3Intent `json:"triggeredIntent,omitempty"`// ForceSendFields is a list of field names (e.g. "CurrentPage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrentPage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput: The output fromthe virtual agent.

func (GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3CreateVersionOperationMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3CreateVersionOperationMetadata struct {// Version: Name of the created version. Format:// `projects//locations//agents//flows//versions/`.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3CreateVersionOperationMetadata: Metadata associatedwith the long running operation for Versions.CreateVersion.

func (GoogleCloudDialogflowCxV3CreateVersionOperationMetadata)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3DataStoreConnectionadded inv0.139.0

type GoogleCloudDialogflowCxV3DataStoreConnection struct {// DataStore: The full name of the referenced data store. Formats:// `projects/{project}/locations/{location}/collections/{collection}/dataStores/// {data_store}`// `projects/{project}/locations/{location}/dataStores/{data_store}`DataStorestring `json:"dataStore,omitempty"`// DataStoreType: The type of the connected data store.//// Possible values://   "DATA_STORE_TYPE_UNSPECIFIED" - Not specified. This value indicates that// the data store type is not specified, so it will not be used during search.//   "PUBLIC_WEB" - A data store that contains public web content.//   "UNSTRUCTURED" - A data store that contains unstructured private data.//   "STRUCTURED" - A data store that contains structured data (for example// FAQ).DataStoreTypestring `json:"dataStoreType,omitempty"`// DocumentProcessingMode: The document processing mode for the data store// connection. Should only be set for PUBLIC_WEB and UNSTRUCTURED data stores.// If not set it is considered as DOCUMENTS, as this is the legacy mode.//// Possible values://   "DOCUMENT_PROCESSING_MODE_UNSPECIFIED" - Not specified. This should be set// for STRUCTURED type data stores. Due to legacy reasons this is considered as// DOCUMENTS for STRUCTURED and PUBLIC_WEB data stores.//   "DOCUMENTS" - Documents are processed as documents.//   "CHUNKS" - Documents are converted to chunks.DocumentProcessingModestring `json:"documentProcessingMode,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3DataStoreConnection: A data store connection. Itrepresents a data store in Discovery Engine and the type of the contents itcontains.

func (GoogleCloudDialogflowCxV3DataStoreConnection)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3DeployFlowMetadataadded inv0.58.0

type GoogleCloudDialogflowCxV3DeployFlowMetadata struct {// TestErrors: Errors of running deployment tests.TestErrors []*GoogleCloudDialogflowCxV3TestError `json:"testErrors,omitempty"`// ForceSendFields is a list of field names (e.g. "TestErrors") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TestErrors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3DeployFlowMetadata: Metadata returned for theEnvironments.DeployFlow long running operation.

func (GoogleCloudDialogflowCxV3DeployFlowMetadata)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3DeployFlowResponseadded inv0.58.0

type GoogleCloudDialogflowCxV3DeployFlowResponse struct {// Deployment: The name of the flow version Deployment. Format:// `projects//locations//agents//environments//deployments/`.Deploymentstring `json:"deployment,omitempty"`// Environment: The updated environment where the flow is deployed.Environment *GoogleCloudDialogflowCxV3Environment `json:"environment,omitempty"`// ForceSendFields is a list of field names (e.g. "Deployment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Deployment") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3DeployFlowResponse: The response message forEnvironments.DeployFlow.

func (GoogleCloudDialogflowCxV3DeployFlowResponse)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3DtmfInputadded inv0.37.0

type GoogleCloudDialogflowCxV3DtmfInput struct {// Digits: The dtmf digits.Digitsstring `json:"digits,omitempty"`// FinishDigit: The finish digit (if any).FinishDigitstring `json:"finishDigit,omitempty"`// ForceSendFields is a list of field names (e.g. "Digits") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Digits") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3DtmfInput: Represents the input for dtmf event.

func (GoogleCloudDialogflowCxV3DtmfInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3Environmentadded inv0.58.0

type GoogleCloudDialogflowCxV3Environment struct {// Description: The human-readable description of the environment. The maximum// length is 500 characters. If exceeded, the request is rejected.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the environment (unique in// an agent). Limit of 64 characters.DisplayNamestring `json:"displayName,omitempty"`// Name: The name of the environment. Format:// `projects//locations//agents//environments/`.Namestring `json:"name,omitempty"`// TestCasesConfig: The test cases config for continuous tests of this// environment.TestCasesConfig *GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig `json:"testCasesConfig,omitempty"`// UpdateTime: Output only. Update time of this environment.UpdateTimestring `json:"updateTime,omitempty"`// VersionConfigs: A list of configurations for flow versions. You should// include version configs for all flows that are reachable from `Start Flow`// in the agent. Otherwise, an error will be returned.VersionConfigs []*GoogleCloudDialogflowCxV3EnvironmentVersionConfig `json:"versionConfigs,omitempty"`// WebhookConfig: The webhook configuration for this environment.WebhookConfig *GoogleCloudDialogflowCxV3EnvironmentWebhookConfig `json:"webhookConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Environment: Represents an environment for anagent. You can create multiple versions of your agent and publish them toseparate environments. When you edit an agent, you are editing the draftagent. At any point, you can save the draft agent as an agent version, whichis an immutable snapshot of your agent. When you save the draft agent, it ispublished to the default environment. When you create agent versions, youcan publish them to custom environments. You can create a variety of customenvironments for testing, development, production, etc.

func (GoogleCloudDialogflowCxV3Environment)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3EnvironmentTestCasesConfigadded inv0.58.0

type GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig struct {// EnableContinuousRun: Whether to run test cases in TestCasesConfig.test_cases// periodically. Default false. If set to true, run once a day.EnableContinuousRunbool `json:"enableContinuousRun,omitempty"`// EnablePredeploymentRun: Whether to run test cases in// TestCasesConfig.test_cases before deploying a flow version to the// environment. Default false.EnablePredeploymentRunbool `json:"enablePredeploymentRun,omitempty"`// TestCases: A list of test case names to run. They should be under the same// agent. Format of each test case name:// `projects//locations//agents//testCases/`TestCases []string `json:"testCases,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableContinuousRun") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableContinuousRun") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig: The configuration forcontinuous tests.

func (GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3EnvironmentVersionConfigadded inv0.58.0

type GoogleCloudDialogflowCxV3EnvironmentVersionConfig struct {// Version: Required. Flow, playbook and tool versions are supported. Format// for flow version: projects//locations//agents//flows//versions/. Format for// playbook version: projects//locations//agents//playbooks//versions/. Format// for tool version: projects//locations//agents//tools//versions/.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3EnvironmentVersionConfig: Configuration for theversion.

func (GoogleCloudDialogflowCxV3EnvironmentVersionConfig)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3EnvironmentWebhookConfigadded inv0.82.0

type GoogleCloudDialogflowCxV3EnvironmentWebhookConfig struct {// WebhookOverrides: The list of webhooks to override for the agent// environment. The webhook must exist in the agent. You can override fields in// `generic_web_service` and `service_directory`.WebhookOverrides []*GoogleCloudDialogflowCxV3Webhook `json:"webhookOverrides,omitempty"`// ForceSendFields is a list of field names (e.g. "WebhookOverrides") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "WebhookOverrides") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3EnvironmentWebhookConfig: Configuration forwebhooks.

func (GoogleCloudDialogflowCxV3EnvironmentWebhookConfig)MarshalJSONadded inv0.82.0

typeGoogleCloudDialogflowCxV3EventHandleradded inv0.37.0

type GoogleCloudDialogflowCxV3EventHandler struct {// Event: Required. The name of the event to handle.Eventstring `json:"event,omitempty"`// Name: Output only. The unique identifier of this event handler.Namestring `json:"name,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TargetPlaybook: The target playbook to transition to. Format:// `projects//locations//agents//playbooks/`.TargetPlaybookstring `json:"targetPlaybook,omitempty"`// TriggerFulfillment: The fulfillment to call when the event occurs. Handling// webhook errors with a fulfillment enabled with webhook could cause infinite// loop. It is invalid to specify such fulfillment for a handler handling// webhooks.TriggerFulfillment *GoogleCloudDialogflowCxV3Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "Event") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Event") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3EventHandler: An event handler specifies an eventthat can be handled during a session. When the specified event happens, thefollowing actions are taken in order: * If there is a `trigger_fulfillment`associated with the event, it will be called. * If there is a `target_page`associated with the event, the session will transition into the specifiedpage. * If there is a `target_flow` associated with the event, the sessionwill transition into the specified flow.

func (GoogleCloudDialogflowCxV3EventHandler)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3EventInputadded inv0.37.0

type GoogleCloudDialogflowCxV3EventInput struct {// Event: Name of the event.Eventstring `json:"event,omitempty"`// ForceSendFields is a list of field names (e.g. "Event") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Event") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3EventInput: Represents the event to trigger.

func (GoogleCloudDialogflowCxV3EventInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ExportAgentResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3ExportAgentResponse struct {// AgentContent: Uncompressed raw byte content for agent. This field is// populated if none of `agent_uri` and `git_destination` are specified in// ExportAgentRequest.AgentContentstring `json:"agentContent,omitempty"`// AgentUri: The URI to a file containing the exported agent. This field is// populated if `agent_uri` is specified in ExportAgentRequest.AgentUristring `json:"agentUri,omitempty"`// CommitSha: Commit SHA of the git push. This field is populated if// `git_destination` is specified in ExportAgentRequest.CommitShastring `json:"commitSha,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ExportAgentResponse: The response message forAgents.ExportAgent.

func (GoogleCloudDialogflowCxV3ExportAgentResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ExportEntityTypesMetadataadded inv0.164.0

type GoogleCloudDialogflowCxV3ExportEntityTypesMetadata struct {}

GoogleCloudDialogflowCxV3ExportEntityTypesMetadata: Metadata returned forthe EntityTypes.ExportEntityTypes long running operation.

typeGoogleCloudDialogflowCxV3ExportEntityTypesResponseadded inv0.164.0

type GoogleCloudDialogflowCxV3ExportEntityTypesResponse struct {// EntityTypesContent: Uncompressed byte content for entity types. This field// is populated only if `entity_types_content_inline` is set to true in// ExportEntityTypesRequest.EntityTypesContent *GoogleCloudDialogflowCxV3InlineDestination `json:"entityTypesContent,omitempty"`// EntityTypesUri: The URI to a file containing the exported entity types. This// field is populated only if `entity_types_uri` is specified in// ExportEntityTypesRequest.EntityTypesUristring `json:"entityTypesUri,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityTypesContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypesContent") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ExportEntityTypesResponse: The response message forEntityTypes.ExportEntityTypes.

func (GoogleCloudDialogflowCxV3ExportEntityTypesResponse)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3ExportFlowResponseadded inv0.46.0

type GoogleCloudDialogflowCxV3ExportFlowResponse struct {// FlowContent: Uncompressed raw byte content for flow.FlowContentstring `json:"flowContent,omitempty"`// FlowUri: The URI to a file containing the exported flow. This field is// populated only if `flow_uri` is specified in ExportFlowRequest.FlowUristring `json:"flowUri,omitempty"`// ForceSendFields is a list of field names (e.g. "FlowContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ExportFlowResponse: The response message forFlows.ExportFlow.

func (GoogleCloudDialogflowCxV3ExportFlowResponse)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3ExportIntentsMetadataadded inv0.143.0

type GoogleCloudDialogflowCxV3ExportIntentsMetadata struct {}

GoogleCloudDialogflowCxV3ExportIntentsMetadata: Metadata returned for theIntents.ExportIntents long running operation.

typeGoogleCloudDialogflowCxV3ExportIntentsResponseadded inv0.143.0

type GoogleCloudDialogflowCxV3ExportIntentsResponse struct {// IntentsContent: Uncompressed byte content for intents. This field is// populated only if `intents_content_inline` is set to true in// ExportIntentsRequest.IntentsContent *GoogleCloudDialogflowCxV3InlineDestination `json:"intentsContent,omitempty"`// IntentsUri: The URI to a file containing the exported intents. This field is// populated only if `intents_uri` is specified in ExportIntentsRequest.IntentsUristring `json:"intentsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "IntentsContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IntentsContent") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ExportIntentsResponse: The response message forIntents.ExportIntents.

func (GoogleCloudDialogflowCxV3ExportIntentsResponse)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3ExportTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3ExportTestCasesMetadata struct {}

GoogleCloudDialogflowCxV3ExportTestCasesMetadata: Metadata returned for theTestCases.ExportTestCases long running operation. This message currently hasno fields.

typeGoogleCloudDialogflowCxV3ExportTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3ExportTestCasesResponse struct {// Content: Uncompressed raw byte content for test cases.Contentstring `json:"content,omitempty"`// GcsUri: The URI to a file containing the exported test cases. This field is// populated only if `gcs_uri` is specified in ExportTestCasesRequest.GcsUristring `json:"gcsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ExportTestCasesResponse: The response message forTestCases.ExportTestCases.

func (GoogleCloudDialogflowCxV3ExportTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3Formadded inv0.37.0

type GoogleCloudDialogflowCxV3Form struct {// Parameters: Parameters to collect from the user.Parameters []*GoogleCloudDialogflowCxV3FormParameter `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameters") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Form: A form is a data model that groups relatedparameters that can be collected from the user. The process in which theagent prompts the user and collects parameter values from the user is calledform filling. A form can be added to a page. When form filling is done, thefilled parameters will be written to the session.

func (GoogleCloudDialogflowCxV3Form)MarshalJSONadded inv0.37.0

func (sGoogleCloudDialogflowCxV3Form) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3FormParameteradded inv0.37.0

type GoogleCloudDialogflowCxV3FormParameter struct {// AdvancedSettings: Hierarchical advanced settings for this parameter. The// settings exposed at the lower level overrides the settings exposed at the// higher level.AdvancedSettings *GoogleCloudDialogflowCxV3AdvancedSettings `json:"advancedSettings,omitempty"`// DefaultValue: The default value of an optional parameter. If the parameter// is required, the default value will be ignored.DefaultValue interface{} `json:"defaultValue,omitempty"`// DisplayName: Required. The human-readable name of the parameter, unique// within the form.DisplayNamestring `json:"displayName,omitempty"`// EntityType: Required. The entity type of the parameter. Format:// `projects/-/locations/-/agents/-/entityTypes/` for system entity types (for// example, `projects/-/locations/-/agents/-/entityTypes/sys.date`), or// `projects//locations//agents//entityTypes/` for developer entity types.EntityTypestring `json:"entityType,omitempty"`// FillBehavior: Required. Defines fill behavior for the parameter.FillBehavior *GoogleCloudDialogflowCxV3FormParameterFillBehavior `json:"fillBehavior,omitempty"`// IsList: Indicates whether the parameter represents a list of values.IsListbool `json:"isList,omitempty"`// Redact: Indicates whether the parameter content should be redacted in log.// If redaction is enabled, the parameter content will be replaced by parameter// name during logging. Note: the parameter content is subject to redaction if// either parameter level redaction or entity type level redaction is enabled.Redactbool `json:"redact,omitempty"`// Required: Indicates whether the parameter is required. Optional parameters// will not trigger prompts; however, they are filled if the user specifies// them. Required parameters must be filled before form filling concludes.Requiredbool `json:"required,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FormParameter: Represents a form parameter.

func (GoogleCloudDialogflowCxV3FormParameter)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3FormParameterFillBehavioradded inv0.37.0

type GoogleCloudDialogflowCxV3FormParameterFillBehavior struct {// InitialPromptFulfillment: Required. The fulfillment to provide the initial// prompt that the agent can present to the user in order to fill the// parameter.InitialPromptFulfillment *GoogleCloudDialogflowCxV3Fulfillment `json:"initialPromptFulfillment,omitempty"`// RepromptEventHandlers: The handlers for parameter-level events, used to// provide reprompt for the parameter or transition to a different page/flow.// The supported events are: * `sys.no-match-`, where N can be from 1 to 6 *// `sys.no-match-default` * `sys.no-input-`, where N can be from 1 to 6 *// `sys.no-input-default` * `sys.invalid-parameter`// `initial_prompt_fulfillment` provides the first prompt for the parameter. If// the user's response does not fill the parameter, a no-match/no-input event// will be triggered, and the fulfillment associated with the// `sys.no-match-1`/`sys.no-input-1` handler (if defined) will be called to// provide a prompt. The `sys.no-match-2`/`sys.no-input-2` handler (if defined)// will respond to the next no-match/no-input event, and so on. A// `sys.no-match-default` or `sys.no-input-default` handler will be used to// handle all following no-match/no-input events after all numbered// no-match/no-input handlers for the parameter are consumed. A// `sys.invalid-parameter` handler can be defined to handle the case where the// parameter values have been `invalidated` by webhook. For example, if the// user's response fill the parameter, however the parameter was invalidated by// webhook, the fulfillment associated with the `sys.invalid-parameter` handler// (if defined) will be called to provide a prompt. If the event handler for// the corresponding event can't be found on the parameter,// `initial_prompt_fulfillment` will be re-prompted.RepromptEventHandlers []*GoogleCloudDialogflowCxV3EventHandler `json:"repromptEventHandlers,omitempty"`// ForceSendFields is a list of field names (e.g. "InitialPromptFulfillment")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InitialPromptFulfillment") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FormParameterFillBehavior: Configuration for howthe filling of a parameter should be handled.

func (GoogleCloudDialogflowCxV3FormParameterFillBehavior)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3Fulfillmentadded inv0.37.0

type GoogleCloudDialogflowCxV3Fulfillment struct {// AdvancedSettings: Hierarchical advanced settings for this fulfillment. The// settings exposed at the lower level overrides the settings exposed at the// higher level.AdvancedSettings *GoogleCloudDialogflowCxV3AdvancedSettings `json:"advancedSettings,omitempty"`// ConditionalCases: Conditional cases for this fulfillment.ConditionalCases []*GoogleCloudDialogflowCxV3FulfillmentConditionalCases `json:"conditionalCases,omitempty"`// EnableGenerativeFallback: If the flag is true, the agent will utilize LLM to// generate a text response. If LLM generation fails, the defined responses in// the fulfillment will be respected. This flag is only useful for fulfillments// associated with no-match event handlers.EnableGenerativeFallbackbool `json:"enableGenerativeFallback,omitempty"`// Generators: A list of Generators to be called during this fulfillment.Generators []*GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings `json:"generators,omitempty"`// Messages: The list of rich message responses to present to the user.Messages []*GoogleCloudDialogflowCxV3ResponseMessage `json:"messages,omitempty"`// ReturnPartialResponses: Whether Dialogflow should return currently queued// fulfillment response messages in streaming APIs. If a webhook is specified,// it happens before Dialogflow invokes webhook. Warning: 1) This flag only// affects streaming API. Responses are still queued and returned once in// non-streaming API. 2) The flag can be enabled in any fulfillment but only// the first 3 partial responses will be returned. You may only want to apply// it to fulfillments that have slow webhooks.ReturnPartialResponsesbool `json:"returnPartialResponses,omitempty"`// SetParameterActions: Set parameter values before executing the webhook.SetParameterActions []*GoogleCloudDialogflowCxV3FulfillmentSetParameterAction `json:"setParameterActions,omitempty"`// Tag: The value of this field will be populated in the WebhookRequest// `fulfillmentInfo.tag` field by Dialogflow when the associated webhook is// called. The tag is typically used by the webhook service to identify which// fulfillment is being called, but it could be used for other purposes. This// field is required if `webhook` is specified.Tagstring `json:"tag,omitempty"`// Webhook: The webhook to call. Format:// `projects//locations//agents//webhooks/`.Webhookstring `json:"webhook,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Fulfillment: A fulfillment can do one or more ofthe following actions at the same time: * Generate rich message responses. *Set parameter values. * Call the webhook. Fulfillments can be called atvarious stages in the Page or Form lifecycle. For example, when aDetectIntentRequest drives a session to enter a new page, the page's entryfulfillment can add a static response to the QueryResult in the returningDetectIntentResponse, call the webhook (for example, to load user data froma database), or both.

func (GoogleCloudDialogflowCxV3Fulfillment)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3FulfillmentConditionalCasesadded inv0.37.0

type GoogleCloudDialogflowCxV3FulfillmentConditionalCases struct {// Cases: A list of cascading if-else conditions.Cases []*GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCase `json:"cases,omitempty"`// ForceSendFields is a list of field names (e.g. "Cases") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cases") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FulfillmentConditionalCases: A list of cascadingif-else conditions. Cases are mutually exclusive. The first one with amatching condition is selected, all the rest ignored.

func (GoogleCloudDialogflowCxV3FulfillmentConditionalCases)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseadded inv0.37.0

type GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCase struct {// CaseContent: A list of case content.CaseContent []*GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContent `json:"caseContent,omitempty"`// Condition: The condition to activate and select this case. Empty means the// condition is always true. The condition is evaluated against form parameters// or session parameters. See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition).Conditionstring `json:"condition,omitempty"`// ForceSendFields is a list of field names (e.g. "CaseContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CaseContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCase: Each case has aBoolean condition. When it is evaluated to be True, the correspondingmessages will be selected and evaluated recursively.

func (GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCase)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContentadded inv0.37.0

type GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContent struct {// AdditionalCases: Additional cases to be evaluated.AdditionalCases *GoogleCloudDialogflowCxV3FulfillmentConditionalCases `json:"additionalCases,omitempty"`// Message: Returned message.Message *GoogleCloudDialogflowCxV3ResponseMessage `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalCases") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdditionalCases") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContent: Thelist of messages or conditional cases to activate for this case.

func (GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContent)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3FulfillmentGeneratorSettingsadded inv0.239.0

type GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings struct {// Generator: Required. The generator to call. Format:// `projects//locations//agents//generators/`.Generatorstring `json:"generator,omitempty"`// InputParameters: Map from placeholder parameter in the Generator to// corresponding session parameters. By default, Dialogflow uses the session// parameter with the same name to fill in the generator template. e.g. If// there is a placeholder parameter `city` in the Generator, Dialogflow default// to fill in the `$city` with `$session.params.city`. However, you may choose// to fill `$city` with `$session.params.desination-city`. - Map key: parameter// ID - Map value: session parameter nameInputParameters map[string]string `json:"inputParameters,omitempty"`// OutputParameter: Required. Output parameter which should contain the// generator response.OutputParameterstring `json:"outputParameter,omitempty"`// ForceSendFields is a list of field names (e.g. "Generator") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Generator") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings: Generator settingsused by the LLM to generate a text response.

func (GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings)MarshalJSONadded inv0.239.0

typeGoogleCloudDialogflowCxV3FulfillmentSetParameterActionadded inv0.37.0

type GoogleCloudDialogflowCxV3FulfillmentSetParameterAction struct {// Parameter: Display name of the parameter.Parameterstring `json:"parameter,omitempty"`// Value: The new value of the parameter. A null value clears the parameter.Value interface{} `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameter") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameter") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3FulfillmentSetParameterAction: Setting a parametervalue.

func (GoogleCloudDialogflowCxV3FulfillmentSetParameterAction)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3GcsDestinationadded inv0.139.0

type GoogleCloudDialogflowCxV3GcsDestination struct {// Uri: Required. The Google Cloud Storage URI for the exported objects. A URI// is of the form: `gs://bucket/object-name-or-prefix` Whether a full object// name, or just a prefix, its usage depends on the Dialogflow operation.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3GcsDestination: Google Cloud Storage location for aDialogflow operation that writes or exports objects (e.g. exported agent ortranscripts) outside of Dialogflow.

func (GoogleCloudDialogflowCxV3GcsDestination)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3ImportEntityTypesMetadataadded inv0.164.0

type GoogleCloudDialogflowCxV3ImportEntityTypesMetadata struct {}

GoogleCloudDialogflowCxV3ImportEntityTypesMetadata: Metadata returned forthe EntityTypes.ImportEntityTypes long running operation.

typeGoogleCloudDialogflowCxV3ImportEntityTypesResponseadded inv0.164.0

type GoogleCloudDialogflowCxV3ImportEntityTypesResponse struct {// ConflictingResources: Info which resources have conflicts when// REPORT_CONFLICT merge_option is set in ImportEntityTypesRequest.ConflictingResources *GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources `json:"conflictingResources,omitempty"`// EntityTypes: The unique identifier of the imported entity types. Format:// `projects//locations//agents//entity_types/`.EntityTypes []string `json:"entityTypes,omitempty"`// ForceSendFields is a list of field names (e.g. "ConflictingResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConflictingResources") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportEntityTypesResponse: The response message forEntityTypes.ImportEntityTypes.

func (GoogleCloudDialogflowCxV3ImportEntityTypesResponse)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResourcesadded inv0.164.0

type GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources struct {// EntityDisplayNames: Display names of conflicting entities.EntityDisplayNames []string `json:"entityDisplayNames,omitempty"`// EntityTypeDisplayNames: Display names of conflicting entity types.EntityTypeDisplayNames []string `json:"entityTypeDisplayNames,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityDisplayNames") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityDisplayNames") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources:Conflicting resources detected during the import process. Only filled whenREPORT_CONFLICT is set in the request and there are conflicts in the displaynames.

func (GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3ImportFlowResponseadded inv0.46.0

type GoogleCloudDialogflowCxV3ImportFlowResponse struct {// Flow: The unique identifier of the new flow. Format:// `projects//locations//agents//flows/`.Flowstring `json:"flow,omitempty"`// ForceSendFields is a list of field names (e.g. "Flow") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flow") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportFlowResponse: The response message forFlows.ImportFlow.

func (GoogleCloudDialogflowCxV3ImportFlowResponse)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3ImportIntentsMetadataadded inv0.143.0

type GoogleCloudDialogflowCxV3ImportIntentsMetadata struct {}

GoogleCloudDialogflowCxV3ImportIntentsMetadata: Metadata returned for theIntents.ImportIntents long running operation.

typeGoogleCloudDialogflowCxV3ImportIntentsResponseadded inv0.143.0

type GoogleCloudDialogflowCxV3ImportIntentsResponse struct {// ConflictingResources: Info which resources have conflicts when// REPORT_CONFLICT merge_option is set in ImportIntentsRequest.ConflictingResources *GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources `json:"conflictingResources,omitempty"`// Intents: The unique identifier of the imported intents. Format:// `projects//locations//agents//intents/`.Intents []string `json:"intents,omitempty"`// ForceSendFields is a list of field names (e.g. "ConflictingResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConflictingResources") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportIntentsResponse: The response message forIntents.ImportIntents.

func (GoogleCloudDialogflowCxV3ImportIntentsResponse)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResourcesadded inv0.143.0

type GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources struct {// EntityDisplayNames: Display names of conflicting entities.EntityDisplayNames []string `json:"entityDisplayNames,omitempty"`// IntentDisplayNames: Display names of conflicting intents.IntentDisplayNames []string `json:"intentDisplayNames,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityDisplayNames") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityDisplayNames") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources:Conflicting resources detected during the import process. Only filled whenREPORT_CONFLICT is set in the request and there are conflicts in the displaynames.

func (GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3ImportTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3ImportTestCasesMetadata struct {// Errors: Errors for failed test cases.Errors []*GoogleCloudDialogflowCxV3TestCaseError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportTestCasesMetadata: Metadata returned for theTestCases.ImportTestCases long running operation.

func (GoogleCloudDialogflowCxV3ImportTestCasesMetadata)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ImportTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3ImportTestCasesResponse struct {// Names: The unique identifiers of the new test cases. Format:// `projects//locations//agents//testCases/`.Names []string `json:"names,omitempty"`// ForceSendFields is a list of field names (e.g. "Names") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Names") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ImportTestCasesResponse: The response message forTestCases.ImportTestCases.

func (GoogleCloudDialogflowCxV3ImportTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3InlineDestinationadded inv0.143.0

type GoogleCloudDialogflowCxV3InlineDestination struct {// Content: Output only. The uncompressed byte content for the objects. Only// populated in responses.Contentstring `json:"content,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3InlineDestination: Inline destination for aDialogflow operation that writes or exports objects (e.g. intents) outsideof Dialogflow.

func (GoogleCloudDialogflowCxV3InlineDestination)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3InputAudioConfigadded inv0.37.0

type GoogleCloudDialogflowCxV3InputAudioConfig struct {// AudioEncoding: Required. Audio encoding of the audio content to process.//// Possible values://   "AUDIO_ENCODING_UNSPECIFIED" - Not specified.//   "AUDIO_ENCODING_LINEAR_16" - Uncompressed 16-bit signed little-endian// samples (Linear PCM). LINT: LEGACY_NAMES//   "AUDIO_ENCODING_FLAC" - [`FLAC`](https://xiph.org/flac/documentation.html)// (Free Lossless Audio Codec) is the recommended encoding because it is// lossless (therefore recognition is not compromised) and requires only about// half the bandwidth of `LINEAR16`. `FLAC` stream encoding supports 16-bit and// 24-bit samples, however, not all fields in `STREAMINFO` are supported.//   "AUDIO_ENCODING_MULAW" - 8-bit samples that compand 14-bit audio samples// using G.711 PCMU/mu-law.//   "AUDIO_ENCODING_AMR" - Adaptive Multi-Rate Narrowband codec.// `sample_rate_hertz` must be 8000.//   "AUDIO_ENCODING_AMR_WB" - Adaptive Multi-Rate Wideband codec.// `sample_rate_hertz` must be 16000.//   "AUDIO_ENCODING_OGG_OPUS" - Opus encoded audio frames in Ogg container// ([OggOpus](https://wiki.xiph.org/OggOpus)). `sample_rate_hertz` must be// 16000.//   "AUDIO_ENCODING_SPEEX_WITH_HEADER_BYTE" - Although the use of lossy// encodings is not recommended, if a very low bitrate encoding is required,// `OGG_OPUS` is highly preferred over Speex encoding. The// [Speex](https://speex.org/) encoding supported by Dialogflow API has a// header byte in each block, as in MIME type `audio/x-speex-with-header-byte`.// It is a variant of the RTP Speex encoding defined in [RFC// 5574](https://tools.ietf.org/html/rfc5574). The stream is a sequence of// blocks, one block per RTP packet. Each block starts with a byte containing// the length of the block, in bytes, followed by one or more frames of Speex// data, padded to an integral number of bytes (octets) as specified in RFC// 5574. In other words, each RTP header is replaced with a single byte// containing the block length. Only Speex wideband is supported.// `sample_rate_hertz` must be 16000.//   "AUDIO_ENCODING_ALAW" - 8-bit samples that compand 13-bit audio samples// using G.711 PCMU/a-law.AudioEncodingstring `json:"audioEncoding,omitempty"`// BargeInConfig: Configuration of barge-in behavior during the streaming of// input audio.BargeInConfig *GoogleCloudDialogflowCxV3BargeInConfig `json:"bargeInConfig,omitempty"`// EnableWordInfo: Optional. If `true`, Dialogflow returns SpeechWordInfo in// StreamingRecognitionResult with information about the recognized speech// words, e.g. start and end time offsets. If false or unspecified, Speech// doesn't return any word-level information.EnableWordInfobool `json:"enableWordInfo,omitempty"`// Model: Optional. Which Speech model to select for the given request. For// more information, see Speech models// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).Modelstring `json:"model,omitempty"`// ModelVariant: Optional. Which variant of the Speech model to use.//// Possible values://   "SPEECH_MODEL_VARIANT_UNSPECIFIED" - No model variant specified. In this// case Dialogflow defaults to USE_BEST_AVAILABLE.//   "USE_BEST_AVAILABLE" - Use the best available variant of the Speech model// that the caller is eligible for.//   "USE_STANDARD" - Use standard model variant even if an enhanced model is// available. See the [Cloud Speech// documentation](https://cloud.google.com/speech-to-text/docs/enhanced-models)// for details about enhanced models.//   "USE_ENHANCED" - Use an enhanced model variant: * If an enhanced variant// does not exist for the given model and request language, Dialogflow falls// back to the standard variant. The [Cloud Speech// documentation](https://cloud.google.com/speech-to-text/docs/enhanced-models)// describes which models have enhanced variants.ModelVariantstring `json:"modelVariant,omitempty"`// OptOutConformerModelMigration: If `true`, the request will opt out for STT// conformer model migration. This field will be deprecated once force// migration takes place in June 2024. Please refer to Dialogflow CX Speech// model migration// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-model-migration).OptOutConformerModelMigrationbool `json:"optOutConformerModelMigration,omitempty"`// PhraseHints: Optional. A list of strings containing words and phrases that// the speech recognizer should recognize with higher likelihood. See the Cloud// Speech documentation// (https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more// details.PhraseHints []string `json:"phraseHints,omitempty"`// SampleRateHertz: Sample rate (in Hertz) of the audio content sent in the// query. Refer to Cloud Speech API documentation// (https://cloud.google.com/speech-to-text/docs/basics) for more details.SampleRateHertzint64 `json:"sampleRateHertz,omitempty"`// SingleUtterance: Optional. If `false` (default), recognition does not cease// until the client closes the stream. If `true`, the recognizer will detect a// single spoken utterance in input audio. Recognition ceases when it detects// the audio's voice has stopped or paused. In this case, once a detected// intent is received, the client should close the stream and start a new// request with a new stream as needed. Note: This setting is relevant only for// streaming methods.SingleUtterancebool `json:"singleUtterance,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioEncoding") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioEncoding") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3InputAudioConfig: Instructs the speech recognizeron how to process the audio content.

func (GoogleCloudDialogflowCxV3InputAudioConfig)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3Intentadded inv0.37.0

type GoogleCloudDialogflowCxV3Intent struct {// Description: Human readable description for better understanding an intent// like its scope, content, result etc. Maximum character limit: 140// characters.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the intent, unique within// the agent.DisplayNamestring `json:"displayName,omitempty"`// IsFallback: Indicates whether this is a fallback intent. Currently only// default fallback intent is allowed in the agent, which is added upon agent// creation. Adding training phrases to fallback intent is useful in the case// of requests that are mistakenly matched, since training phrases assigned to// fallback intents act as negative examples that triggers no-match event.IsFallbackbool `json:"isFallback,omitempty"`// Labels: The key/value metadata to label an intent. Labels can contain// lowercase letters, digits and the symbols '-' and '_'. International// characters are allowed, including letters from unicase alphabets. Keys must// start with a letter. Keys and values can be no longer than 63 characters and// no more than 128 bytes. Prefix "sys-" is reserved for Dialogflow defined// labels. Currently allowed Dialogflow defined labels include: * sys-head *// sys-contextual The above labels do not require value. "sys-head" means the// intent is a head intent. "sys.contextual" means the intent is a contextual// intent.Labels map[string]string `json:"labels,omitempty"`// Name: The unique identifier of the intent. Required for the// Intents.UpdateIntent method. Intents.CreateIntent populates the name// automatically. Format: `projects//locations//agents//intents/`.Namestring `json:"name,omitempty"`// Parameters: The collection of parameters associated with the intent.Parameters []*GoogleCloudDialogflowCxV3IntentParameter `json:"parameters,omitempty"`// Priority: The priority of this intent. Higher numbers represent higher// priorities. - If the supplied value is unspecified or 0, the service// translates the value to 500,000, which corresponds to the `Normal` priority// in the console. - If the supplied value is negative, the intent is ignored// in runtime detect intent requests.Priorityint64 `json:"priority,omitempty"`// TrainingPhrases: The collection of training phrases the agent is trained on// to identify the intent.TrainingPhrases []*GoogleCloudDialogflowCxV3IntentTrainingPhrase `json:"trainingPhrases,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Intent: An intent represents a user's intent tointeract with a conversational agent. You can provide information for theDialogflow API to use to match user input to an intent by adding trainingphrases (i.e., examples of user input) to your intent.

func (GoogleCloudDialogflowCxV3Intent)MarshalJSONadded inv0.37.0

func (sGoogleCloudDialogflowCxV3Intent) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3IntentInputadded inv0.37.0

type GoogleCloudDialogflowCxV3IntentInput struct {// Intent: Required. The unique identifier of the intent. Format:// `projects//locations//agents//intents/`.Intentstring `json:"intent,omitempty"`// ForceSendFields is a list of field names (e.g. "Intent") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Intent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3IntentInput: Represents the intent to triggerprogrammatically rather than as a result of natural language processing.

func (GoogleCloudDialogflowCxV3IntentInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3IntentParameteradded inv0.37.0

type GoogleCloudDialogflowCxV3IntentParameter struct {// EntityType: Required. The entity type of the parameter. Format:// `projects/-/locations/-/agents/-/entityTypes/` for system entity types (for// example, `projects/-/locations/-/agents/-/entityTypes/sys.date`), or// `projects//locations//agents//entityTypes/` for developer entity types.EntityTypestring `json:"entityType,omitempty"`// Id: Required. The unique identifier of the parameter. This field is used by// training phrases to annotate their parts.Idstring `json:"id,omitempty"`// IsList: Indicates whether the parameter represents a list of values.IsListbool `json:"isList,omitempty"`// Redact: Indicates whether the parameter content should be redacted in log.// If redaction is enabled, the parameter content will be replaced by parameter// name during logging. Note: the parameter content is subject to redaction if// either parameter level redaction or entity type level redaction is enabled.Redactbool `json:"redact,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3IntentParameter: Represents an intent parameter.

func (GoogleCloudDialogflowCxV3IntentParameter)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3IntentTrainingPhraseadded inv0.37.0

type GoogleCloudDialogflowCxV3IntentTrainingPhrase struct {// Id: Output only. The unique identifier of the training phrase.Idstring `json:"id,omitempty"`// Parts: Required. The ordered list of training phrase parts. The parts are// concatenated in order to form the training phrase. Note: The API does not// automatically annotate training phrases like the Dialogflow Console does.// Note: Do not forget to include whitespace at part boundaries, so the// training phrase is well formatted when the parts are concatenated. If the// training phrase does not need to be annotated with parameters, you just need// a single part with only the Part.text field set. If you want to annotate the// training phrase, you must create multiple parts, where the fields of each// part are populated in one of two ways: - `Part.text` is set to a part of the// phrase that has no parameters. - `Part.text` is set to a part of the phrase// that you want to annotate, and the `parameter_id` field is set.Parts []*GoogleCloudDialogflowCxV3IntentTrainingPhrasePart `json:"parts,omitempty"`// RepeatCount: Indicates how many times this example was added to the intent.RepeatCountint64 `json:"repeatCount,omitempty"`// ForceSendFields is a list of field names (e.g. "Id") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Id") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3IntentTrainingPhrase: Represents an example thatthe agent is trained on to identify the intent.

func (GoogleCloudDialogflowCxV3IntentTrainingPhrase)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3IntentTrainingPhrasePartadded inv0.37.0

type GoogleCloudDialogflowCxV3IntentTrainingPhrasePart struct {// ParameterId: The parameter used to annotate this part of the training// phrase. This field is required for annotated parts of the training phrase.ParameterIdstring `json:"parameterId,omitempty"`// Text: Required. The text for this part.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "ParameterId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ParameterId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3IntentTrainingPhrasePart: Represents a part of atraining phrase.

func (GoogleCloudDialogflowCxV3IntentTrainingPhrasePart)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3KnowledgeConnectorSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3KnowledgeConnectorSettings struct {// DataStoreConnections: Optional. List of related data store connections.DataStoreConnections []*GoogleCloudDialogflowCxV3DataStoreConnection `json:"dataStoreConnections,omitempty"`// Enabled: Whether Knowledge Connector is enabled or not.Enabledbool `json:"enabled,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TriggerFulfillment: The fulfillment to be triggered. When the answers from// the Knowledge Connector are selected by Dialogflow, you can utitlize the// request scoped parameter `$request.knowledge.answers` (contains up to the 5// highest confidence answers) and `$request.knowledge.questions` (contains the// corresponding questions) to construct the fulfillment.TriggerFulfillment *GoogleCloudDialogflowCxV3Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStoreConnections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStoreConnections") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3KnowledgeConnectorSettings: The Knowledge Connectorsettings for this page or flow. This includes information such as theattached Knowledge Bases, and the way to execute fulfillment.

func (GoogleCloudDialogflowCxV3KnowledgeConnectorSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3LanguageInfoadded inv0.177.0

type GoogleCloudDialogflowCxV3LanguageInfo struct {// ConfidenceScore: The confidence score of the detected language between 0 and// 1.ConfidenceScorefloat64 `json:"confidenceScore,omitempty"`// InputLanguageCode: The language code specified in the original request.InputLanguageCodestring `json:"inputLanguageCode,omitempty"`// ResolvedLanguageCode: The language code detected for this request based on// the user conversation.ResolvedLanguageCodestring `json:"resolvedLanguageCode,omitempty"`// ForceSendFields is a list of field names (e.g. "ConfidenceScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConfidenceScore") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3LanguageInfo: Represents the language informationof the request.

func (GoogleCloudDialogflowCxV3LanguageInfo)MarshalJSONadded inv0.177.0

func (*GoogleCloudDialogflowCxV3LanguageInfo)UnmarshalJSONadded inv0.177.0

func (s *GoogleCloudDialogflowCxV3LanguageInfo) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowCxV3Pageadded inv0.37.0

type GoogleCloudDialogflowCxV3Page struct {// AdvancedSettings: Hierarchical advanced settings for this page. The settings// exposed at the lower level overrides the settings exposed at the higher// level.AdvancedSettings *GoogleCloudDialogflowCxV3AdvancedSettings `json:"advancedSettings,omitempty"`// Description: The description of the page. The maximum length is 500// characters.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the page, unique within// the flow.DisplayNamestring `json:"displayName,omitempty"`// EntryFulfillment: The fulfillment to call when the session is entering the// page.EntryFulfillment *GoogleCloudDialogflowCxV3Fulfillment `json:"entryFulfillment,omitempty"`// EventHandlers: Handlers associated with the page to handle events such as// webhook errors, no match or no input.EventHandlers []*GoogleCloudDialogflowCxV3EventHandler `json:"eventHandlers,omitempty"`// Form: The form associated with the page, used for collecting parameters// relevant to the page.Form *GoogleCloudDialogflowCxV3Form `json:"form,omitempty"`// KnowledgeConnectorSettings: Optional. Knowledge connector configuration.KnowledgeConnectorSettings *GoogleCloudDialogflowCxV3KnowledgeConnectorSettings `json:"knowledgeConnectorSettings,omitempty"`// Name: The unique identifier of the page. Required for the Pages.UpdatePage// method. Pages.CreatePage populates the name automatically. Format:// `projects//locations//agents//flows//pages/`.Namestring `json:"name,omitempty"`// TransitionRouteGroups: Ordered list of `TransitionRouteGroups` added to the// page. Transition route groups must be unique within a page. If the page// links both flow-level transition route groups and agent-level transition// route groups, the flow-level ones will have higher priority and will be put// before the agent-level ones. * If multiple transition routes within a page// scope refer to the same intent, then the precedence order is: page's// transition route -> page's transition route group -> flow's transition// routes. * If multiple transition route groups within a page contain the same// intent, then the first group in the ordered list takes precedence.// Format:`projects//locations//agents//flows//transitionRouteGroups/` or// `projects//locations//agents//transitionRouteGroups/` for agent-level// groups.TransitionRouteGroups []string `json:"transitionRouteGroups,omitempty"`// TransitionRoutes: A list of transitions for the transition rules of this// page. They route the conversation to another page in the same flow, or// another flow. When we are in a certain page, the TransitionRoutes are// evaluated in the following order: * TransitionRoutes defined in the page// with intent specified. * TransitionRoutes defined in the transition route// groups with intent specified. * TransitionRoutes defined in flow with intent// specified. * TransitionRoutes defined in the transition route groups with// intent specified. * TransitionRoutes defined in the page with only condition// specified. * TransitionRoutes defined in the transition route groups with// only condition specified.TransitionRoutes []*GoogleCloudDialogflowCxV3TransitionRoute `json:"transitionRoutes,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Page: A Dialogflow CX conversation (session) can bedescribed and visualized as a state machine. The states of a CX session arerepresented by pages. For each flow, you define many pages, where yourcombined pages can handle a complete conversation on the topics the flow isdesigned for. At any given moment, exactly one page is the current page, thecurrent page is considered active, and the flow associated with that page isconsidered active. Every flow has a special start page. When a flowinitially becomes active, the start page page becomes the current page. Foreach conversational turn, the current page will either stay the same ortransition to another page. You configure each page to collect informationfrom the end-user that is relevant for the conversational state representedby the page. For more information, see the Page guide(https://cloud.google.com/dialogflow/cx/docs/concept/page).

func (GoogleCloudDialogflowCxV3Page)MarshalJSONadded inv0.37.0

func (sGoogleCloudDialogflowCxV3Page) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3PageInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3PageInfo struct {// CurrentPage: Always present for WebhookRequest. Ignored for WebhookResponse.// The unique identifier of the current page. Format:// `projects//locations//agents//flows//pages/`.CurrentPagestring `json:"currentPage,omitempty"`// DisplayName: Always present for WebhookRequest. Ignored for WebhookResponse.// The display name of the current page.DisplayNamestring `json:"displayName,omitempty"`// FormInfo: Optional for both WebhookRequest and WebhookResponse. Information// about the form.FormInfo *GoogleCloudDialogflowCxV3PageInfoFormInfo `json:"formInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "CurrentPage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrentPage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3PageInfo: Represents page information communicatedto and from the webhook.

func (GoogleCloudDialogflowCxV3PageInfo)MarshalJSONadded inv0.34.0

func (sGoogleCloudDialogflowCxV3PageInfo) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3PageInfoFormInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3PageInfoFormInfo struct {// ParameterInfo: Optional for both WebhookRequest and WebhookResponse. The// parameters contained in the form. Note that the webhook cannot add or remove// any form parameter.ParameterInfo []*GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo `json:"parameterInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "ParameterInfo") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ParameterInfo") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3PageInfoFormInfo: Represents form information.

func (GoogleCloudDialogflowCxV3PageInfoFormInfo)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo struct {// DisplayName: Always present for WebhookRequest. Required for// WebhookResponse. The human-readable name of the parameter, unique within the// form. This field cannot be modified by the webhook.DisplayNamestring `json:"displayName,omitempty"`// JustCollected: Optional for WebhookRequest. Ignored for WebhookResponse.// Indicates if the parameter value was just collected on the last conversation// turn.JustCollectedbool `json:"justCollected,omitempty"`// Required: Optional for both WebhookRequest and WebhookResponse. Indicates// whether the parameter is required. Optional parameters will not trigger// prompts; however, they are filled if the user specifies them. Required// parameters must be filled before form filling concludes.Requiredbool `json:"required,omitempty"`// State: Always present for WebhookRequest. Required for WebhookResponse. The// state of the parameter. This field can be set to INVALID by the webhook to// invalidate the parameter; other values set by the webhook will be ignored.//// Possible values://   "PARAMETER_STATE_UNSPECIFIED" - Not specified. This value should be never// used.//   "EMPTY" - Indicates that the parameter does not have a value.//   "INVALID" - Indicates that the parameter value is invalid. This field can// be used by the webhook to invalidate the parameter and ask the server to// collect it from the user again.//   "FILLED" - Indicates that the parameter has a value.Statestring `json:"state,omitempty"`// Value: Optional for both WebhookRequest and WebhookResponse. The value of// the parameter. This field can be set by the webhook to change the parameter// value.Value interface{} `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo: Represents parameterinformation.

func (GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3QueryInputadded inv0.37.0

type GoogleCloudDialogflowCxV3QueryInput struct {// Audio: The natural language speech audio to be processed.Audio *GoogleCloudDialogflowCxV3AudioInput `json:"audio,omitempty"`// Dtmf: The DTMF event to be handled.Dtmf *GoogleCloudDialogflowCxV3DtmfInput `json:"dtmf,omitempty"`// Event: The event to be triggered.Event *GoogleCloudDialogflowCxV3EventInput `json:"event,omitempty"`// Intent: The intent to be triggered.Intent *GoogleCloudDialogflowCxV3IntentInput `json:"intent,omitempty"`// LanguageCode: Required. The language of the input. See Language Support// (https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list// of the currently supported language codes. Note that queries in the same// session do not necessarily need to specify the same language.LanguageCodestring `json:"languageCode,omitempty"`// Text: The natural language text to be processed.Text *GoogleCloudDialogflowCxV3TextInput `json:"text,omitempty"`// ToolCallResult: The results of a tool executed by the client.ToolCallResult *GoogleCloudDialogflowCxV3ToolCallResult `json:"toolCallResult,omitempty"`// ForceSendFields is a list of field names (e.g. "Audio") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Audio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3QueryInput: Represents the query input. It cancontain one of: 1. A conversational query in the form of text. 2. An intentquery that specifies which intent to trigger. 3. Natural language speechaudio to be processed. 4. An event to be triggered. 5. DTMF digits to invokean intent and fill in parameter value. 6. The results of a tool executed bythe client.

func (GoogleCloudDialogflowCxV3QueryInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ResponseMessageadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessage struct {// Channel: The channel which the response is associated with. Clients can// specify the channel via QueryParameters.channel, and only associated channel// response will be returned.Channelstring `json:"channel,omitempty"`// ConversationSuccess: Indicates that the conversation succeeded.ConversationSuccess *GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess `json:"conversationSuccess,omitempty"`// EndInteraction: Output only. A signal that indicates the interaction with// the Dialogflow agent has ended. This message is generated by Dialogflow only// when the conversation reaches `END_SESSION` page. It is not supposed to be// defined by the user. It's guaranteed that there is at most one such message// in each response.EndInteraction *GoogleCloudDialogflowCxV3ResponseMessageEndInteraction `json:"endInteraction,omitempty"`// KnowledgeInfoCard: Represents info card for knowledge answers, to be better// rendered in Dialogflow Messenger.KnowledgeInfoCard *GoogleCloudDialogflowCxV3ResponseMessageKnowledgeInfoCard `json:"knowledgeInfoCard,omitempty"`// LiveAgentHandoff: Hands off conversation to a human agent.LiveAgentHandoff *GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff `json:"liveAgentHandoff,omitempty"`// MixedAudio: Output only. An audio response message composed of both the// synthesized Dialogflow agent responses and responses defined via play_audio.// This message is generated by Dialogflow only and not supposed to be defined// by the user.MixedAudio *GoogleCloudDialogflowCxV3ResponseMessageMixedAudio `json:"mixedAudio,omitempty"`// OutputAudioText: A text or ssml response that is preferentially used for TTS// output audio synthesis, as described in the comment on the ResponseMessage// message.OutputAudioText *GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText `json:"outputAudioText,omitempty"`// Payload: Returns a response containing a custom, platform-specific payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// PlayAudio: Signal that the client should play an audio clip hosted at a// client-specific URI. Dialogflow uses this to construct mixed_audio. However,// Dialogflow itself does not try to read or process the URI in any way.PlayAudio *GoogleCloudDialogflowCxV3ResponseMessagePlayAudio `json:"playAudio,omitempty"`// ResponseType: Response type.//// Possible values://   "RESPONSE_TYPE_UNSPECIFIED" - Not specified.//   "ENTRY_PROMPT" - The response is from an entry prompt in the page.//   "PARAMETER_PROMPT" - The response is from form-filling prompt in the page.//   "HANDLER_PROMPT" - The response is from a transition route or an event// handler in the page or flow or transition route group.ResponseTypestring `json:"responseType,omitempty"`// TelephonyTransferCall: A signal that the client should transfer the phone// call connected to this agent to a third-party endpoint.TelephonyTransferCall *GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall `json:"telephonyTransferCall,omitempty"`// Text: Returns a text response.Text *GoogleCloudDialogflowCxV3ResponseMessageText `json:"text,omitempty"`// ToolCall: Returns the definition of a tool call that should be executed by// the client.ToolCall *GoogleCloudDialogflowCxV3ToolCall `json:"toolCall,omitempty"`// ForceSendFields is a list of field names (e.g. "Channel") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Channel") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessage: Represents a response message thatcan be returned by a conversational agent. Response messages are also usedfor output audio synthesis. The approach is as follows: * If at least oneOutputAudioText response is present, then all OutputAudioText responses arelinearly concatenated, and the result is used for output audio synthesis. *If the OutputAudioText responses are a mixture of text and SSML, then theconcatenated result is treated as SSML; otherwise, the result is treated aseither text or SSML as appropriate. The agent designer should ideally useeither text or SSML consistently throughout the bot design. * Otherwise, allText responses are linearly concatenated, and the result is used for outputaudio synthesis. This approach allows for more sophisticated user experiencescenarios, where the text displayed to the user may differ from what isheard.

func (GoogleCloudDialogflowCxV3ResponseMessage)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageConversationSuccessadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess struct {// Metadata: Custom metadata. Dialogflow doesn't impose any structure on this.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess: Indicates thatthe conversation succeeded, i.e., the bot handled the issue that thecustomer talked to it about. Dialogflow only uses this to determine whichconversations should be counted as successful and doesn't process themetadata in this message in any way. Note that Dialogflow also considersconversations that get to the conversation end page as successful even ifthey don't return ConversationSuccess. You may set this, for example: * Inthe entry_fulfillment of a Page if entering the page indicates that theconversation succeeded. * In a webhook response when you determine that youhandled the customer issue.

func (GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageEndInteractionadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageEndInteraction struct {}

GoogleCloudDialogflowCxV3ResponseMessageEndInteraction: Indicates thatinteraction with the Dialogflow agent has ended. This message is generatedby Dialogflow only and not supposed to be defined by the user.

typeGoogleCloudDialogflowCxV3ResponseMessageKnowledgeInfoCardadded inv0.139.0

type GoogleCloudDialogflowCxV3ResponseMessageKnowledgeInfoCard struct {}

GoogleCloudDialogflowCxV3ResponseMessageKnowledgeInfoCard: Represents infocard response. If the response contains generative knowledge prediction,Dialogflow will return a payload with Infobot Messenger compatible infocard. Otherwise, the info card response is skipped.

typeGoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoffadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff struct {// Metadata: Custom metadata for your handoff procedure. Dialogflow doesn't// impose any structure on this.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff: Indicates that theconversation should be handed off to a live agent. Dialogflow only uses thisto determine which conversations were handed off to a human agent formeasurement purposes. What else to do with this signal is up to you and yourhandoff procedures. You may set this, for example: * In theentry_fulfillment of a Page if entering the page indicates something wentextremely wrong in the conversation. * In a webhook response when youdetermine that the customer issue can only be handled by a human.

func (GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageMixedAudioadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageMixedAudio struct {// Segments: Segments this audio response is composed of.Segments []*GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment `json:"segments,omitempty"`// ForceSendFields is a list of field names (e.g. "Segments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Segments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageMixedAudio: Represents an audiomessage that is composed of both segments synthesized from the Dialogflowagent prompts and ones hosted externally at the specified URIs. The externalURIs are specified via play_audio. This message is generated by Dialogflowonly and not supposed to be defined by the user.

func (GoogleCloudDialogflowCxV3ResponseMessageMixedAudio)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegmentadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment struct {// AllowPlaybackInterruption: Output only. Whether the playback of this segment// can be interrupted by the end user's speech and the client should then start// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Audio: Raw audio synthesized from the Dialogflow agent's response using the// output config specified in the request.Audiostring `json:"audio,omitempty"`// Uri: Client-specific URI that points to an audio clip accessible to the// client. Dialogflow does not impose any validation on it.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment: Represents onesegment of audio.

func (GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageOutputAudioTextadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Ssml: The SSML text to be synthesized. For more information, see SSML// (/speech/text-to-speech/docs/ssml).Ssmlstring `json:"ssml,omitempty"`// Text: The raw text to be synthesized.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText: A text or ssmlresponse that is preferentially used for TTS output audio synthesis, asdescribed in the comment on the ResponseMessage message.

func (GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessagePlayAudioadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessagePlayAudio struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// AudioUri: Required. URI of the audio clip. Dialogflow does not impose any// validation on this value. It is specific to the client that reads it.AudioUristring `json:"audioUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessagePlayAudio: Specifies an audio clipto be played by the client as part of the response.

func (GoogleCloudDialogflowCxV3ResponseMessagePlayAudio)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCalladded inv0.62.0

type GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall struct {// PhoneNumber: Transfer the call to a phone number in E.164 format// (https://en.wikipedia.org/wiki/E.164).PhoneNumberstring `json:"phoneNumber,omitempty"`// ForceSendFields is a list of field names (e.g. "PhoneNumber") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PhoneNumber") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall: Representsthe signal that telles the client to transfer the phone call connected tothe agent to a third-party endpoint.

func (GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall)MarshalJSONadded inv0.62.0

typeGoogleCloudDialogflowCxV3ResponseMessageTextadded inv0.34.0

type GoogleCloudDialogflowCxV3ResponseMessageText struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Text: Required. A collection of text response variants. If multiple variants// are defined, only one text response variant is returned at runtime.Text []string `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ResponseMessageText: The text response message.

func (GoogleCloudDialogflowCxV3ResponseMessageText)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3RunContinuousTestMetadataadded inv0.48.0

type GoogleCloudDialogflowCxV3RunContinuousTestMetadata struct {// Errors: The test errors.Errors []*GoogleCloudDialogflowCxV3TestError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3RunContinuousTestMetadata: Metadata returned forthe Environments.RunContinuousTest long running operation.

func (GoogleCloudDialogflowCxV3RunContinuousTestMetadata)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3RunContinuousTestResponseadded inv0.48.0

type GoogleCloudDialogflowCxV3RunContinuousTestResponse struct {// ContinuousTestResult: The result for a continuous test run.ContinuousTestResult *GoogleCloudDialogflowCxV3ContinuousTestResult `json:"continuousTestResult,omitempty"`// ForceSendFields is a list of field names (e.g. "ContinuousTestResult") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContinuousTestResult") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3RunContinuousTestResponse: The response message forEnvironments.RunContinuousTest.

func (GoogleCloudDialogflowCxV3RunContinuousTestResponse)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3RunTestCaseMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3RunTestCaseMetadata struct {}

GoogleCloudDialogflowCxV3RunTestCaseMetadata: Metadata returned for theTestCases.RunTestCase long running operation. This message currently has nofields.

typeGoogleCloudDialogflowCxV3RunTestCaseResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3RunTestCaseResponse struct {// Result: The result.Result *GoogleCloudDialogflowCxV3TestCaseResult `json:"result,omitempty"`// ForceSendFields is a list of field names (e.g. "Result") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Result") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3RunTestCaseResponse: The response message forTestCases.RunTestCase.

func (GoogleCloudDialogflowCxV3RunTestCaseResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3SessionInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3SessionInfo struct {// Parameters: Optional for WebhookRequest. Optional for WebhookResponse. All// parameters collected from forms and intents during the session. Parameters// can be created, updated, or removed by the webhook. To remove a parameter// from the session, the webhook should explicitly set the parameter value to// null in WebhookResponse. The map is keyed by parameters' display names.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// Session: Always present for WebhookRequest. Ignored for WebhookResponse. The// unique identifier of the session. This field can be used by the webhook to// identify a session. Format: `projects//locations//agents//sessions/` or// `projects//locations//agents//environments//sessions/` if environment is// specified.Sessionstring `json:"session,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameters") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3SessionInfo: Represents session informationcommunicated to and from the webhook.

func (GoogleCloudDialogflowCxV3SessionInfo)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3TestCaseadded inv0.37.0

type GoogleCloudDialogflowCxV3TestCase struct {// CreationTime: Output only. When the test was created.CreationTimestring `json:"creationTime,omitempty"`// DisplayName: Required. The human-readable name of the test case, unique// within the agent. Limit of 200 characters.DisplayNamestring `json:"displayName,omitempty"`// LastTestResult: The latest test result.LastTestResult *GoogleCloudDialogflowCxV3TestCaseResult `json:"lastTestResult,omitempty"`// Name: The unique identifier of the test case. TestCases.CreateTestCase will// populate the name automatically. Otherwise use format:// `projects//locations//agents//testCases/`.Namestring `json:"name,omitempty"`// Notes: Additional freeform notes about the test case. Limit of 400// characters.Notesstring `json:"notes,omitempty"`// Tags: Tags are short descriptions that users may apply to test cases for// organizational and filtering purposes. Each tag should start with "#" and// has a limit of 30 characters.Tags []string `json:"tags,omitempty"`// TestCaseConversationTurns: The conversation turns uttered when the test case// was created, in chronological order. These include the canonical set of// agent utterances that should occur when the agent is working properly.TestCaseConversationTurns []*GoogleCloudDialogflowCxV3ConversationTurn `json:"testCaseConversationTurns,omitempty"`// TestConfig: Config for the test case.TestConfig *GoogleCloudDialogflowCxV3TestConfig `json:"testConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "CreationTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreationTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestCase: Represents a test case.

func (GoogleCloudDialogflowCxV3TestCase)MarshalJSONadded inv0.37.0

func (sGoogleCloudDialogflowCxV3TestCase) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3TestCaseErroradded inv0.37.0

type GoogleCloudDialogflowCxV3TestCaseError struct {// Status: The status associated with the test case.Status *GoogleRpcStatus `json:"status,omitempty"`// TestCase: The test case.TestCase *GoogleCloudDialogflowCxV3TestCase `json:"testCase,omitempty"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestCaseError: Error info for importing a test.

func (GoogleCloudDialogflowCxV3TestCaseError)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TestCaseResultadded inv0.37.0

type GoogleCloudDialogflowCxV3TestCaseResult struct {// ConversationTurns: The conversation turns uttered during the test case// replay in chronological order.ConversationTurns []*GoogleCloudDialogflowCxV3ConversationTurn `json:"conversationTurns,omitempty"`// Environment: Environment where the test was run. If not set, it indicates// the draft environment.Environmentstring `json:"environment,omitempty"`// Name: The resource name for the test case result. Format:// `projects//locations//agents//testCases//results/`.Namestring `json:"name,omitempty"`// TestResult: Whether the test case passed in the agent environment.//// Possible values://   "TEST_RESULT_UNSPECIFIED" - Not specified. Should never be used.//   "PASSED" - The test passed.//   "FAILED" - The test did not pass.TestResultstring `json:"testResult,omitempty"`// TestTime: The time that the test was run.TestTimestring `json:"testTime,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationTurns") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationTurns") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestCaseResult: Represents a result from running atest case in an agent environment.

func (GoogleCloudDialogflowCxV3TestCaseResult)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TestConfigadded inv0.37.0

type GoogleCloudDialogflowCxV3TestConfig struct {// Flow: Flow name to start the test case with. Format:// `projects//locations//agents//flows/`. Only one of `flow` and `page` should// be set to indicate the starting point of the test case. If neither is set,// the test case will start with start page on the default start flow.Flowstring `json:"flow,omitempty"`// Page: The page to start the test case with. Format:// `projects//locations//agents//flows//pages/`. Only one of `flow` and `page`// should be set to indicate the starting point of the test case. If neither is// set, the test case will start with start page on the default start flow.Pagestring `json:"page,omitempty"`// TrackingParameters: Session parameters to be compared when calculating// differences.TrackingParameters []string `json:"trackingParameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Flow") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flow") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestConfig: Represents configurations for a testcase.

func (GoogleCloudDialogflowCxV3TestConfig)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TestErroradded inv0.37.0

type GoogleCloudDialogflowCxV3TestError struct {// Status: The status associated with the test.Status *GoogleRpcStatus `json:"status,omitempty"`// TestCase: The test case resource name.TestCasestring `json:"testCase,omitempty"`// TestTime: The timestamp when the test was completed.TestTimestring `json:"testTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestError: Error info for running a test.

func (GoogleCloudDialogflowCxV3TestError)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TestRunDifferenceadded inv0.37.0

type GoogleCloudDialogflowCxV3TestRunDifference struct {// Description: A human readable description of the diff, showing the actual// output vs expected output.Descriptionstring `json:"description,omitempty"`// Type: The type of diff.//// Possible values://   "DIFF_TYPE_UNSPECIFIED" - Should never be used.//   "INTENT" - The intent.//   "PAGE" - The page.//   "PARAMETERS" - The parameters.//   "UTTERANCE" - The message utterance.//   "FLOW" - The flow.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TestRunDifference: The description of differencesbetween original and replayed agent output.

func (GoogleCloudDialogflowCxV3TestRunDifference)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TextInputadded inv0.37.0

type GoogleCloudDialogflowCxV3TextInput struct {// Text: Required. The UTF-8 encoded natural language text to be processed.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TextInput: Represents the natural language text tobe processed.

func (GoogleCloudDialogflowCxV3TextInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3ToolCalladded inv0.231.0

type GoogleCloudDialogflowCxV3ToolCall struct {// Action: Required. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// InputParameters: Optional. The action's input parameters.InputParametersgoogleapi.RawMessage `json:"inputParameters,omitempty"`// Tool: Required. The tool associated with this call. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ToolCall: Represents a call of a specific tool'saction with the specified inputs.

func (GoogleCloudDialogflowCxV3ToolCall)MarshalJSONadded inv0.231.0

func (sGoogleCloudDialogflowCxV3ToolCall) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3ToolCallResultadded inv0.231.0

type GoogleCloudDialogflowCxV3ToolCallResult struct {// Action: Required. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// Error: The tool call's error.Error *GoogleCloudDialogflowCxV3ToolCallResultError `json:"error,omitempty"`// OutputParameters: The tool call's output parameters.OutputParametersgoogleapi.RawMessage `json:"outputParameters,omitempty"`// Tool: Required. The tool associated with this call. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ToolCallResult: The result of calling a tool'saction that has been executed by the client.

func (GoogleCloudDialogflowCxV3ToolCallResult)MarshalJSONadded inv0.231.0

typeGoogleCloudDialogflowCxV3ToolCallResultErroradded inv0.231.0

type GoogleCloudDialogflowCxV3ToolCallResultError struct {// Message: Optional. The error message of the function.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Message") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Message") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3ToolCallResultError: An error produced by the toolcall.

func (GoogleCloudDialogflowCxV3ToolCallResultError)MarshalJSONadded inv0.231.0

typeGoogleCloudDialogflowCxV3TransitionRouteadded inv0.37.0

type GoogleCloudDialogflowCxV3TransitionRoute struct {// Condition: The condition to evaluate against form parameters or session// parameters. See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition). At least// one of `intent` or `condition` must be specified. When both `intent` and// `condition` are specified, the transition can only happen when both are// fulfilled.Conditionstring `json:"condition,omitempty"`// Description: Optional. The description of the transition route. The maximum// length is 500 characters.Descriptionstring `json:"description,omitempty"`// Intent: The unique identifier of an Intent. Format:// `projects//locations//agents//intents/`. Indicates that the transition can// only happen when the given intent is matched. At least one of `intent` or// `condition` must be specified. When both `intent` and `condition` are// specified, the transition can only happen when both are fulfilled.Intentstring `json:"intent,omitempty"`// Name: Output only. The unique identifier of this transition route.Namestring `json:"name,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TriggerFulfillment: The fulfillment to call when the condition is satisfied.// At least one of `trigger_fulfillment` and `target` must be specified. When// both are defined, `trigger_fulfillment` is executed first.TriggerFulfillment *GoogleCloudDialogflowCxV3Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TransitionRoute: A transition route specifies aintent that can be matched and/or a data condition that can be evaluatedduring a session. When a specified transition is matched, the followingactions are taken in order: * If there is a `trigger_fulfillment` associatedwith the transition, it will be called. * If there is a `target_page`associated with the transition, the session will transition into thespecified page. * If there is a `target_flow` associated with thetransition, the session will transition into the specified flow.

func (GoogleCloudDialogflowCxV3TransitionRoute)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3TurnSignalsadded inv0.107.0

type GoogleCloudDialogflowCxV3TurnSignals struct {// AgentEscalated: Whether agent responded with LiveAgentHandoff fulfillment.AgentEscalatedbool `json:"agentEscalated,omitempty"`// DtmfUsed: Whether user was using DTMF input.DtmfUsedbool `json:"dtmfUsed,omitempty"`// FailureReasons: Failure reasons of the turn.//// Possible values://   "FAILURE_REASON_UNSPECIFIED" - Failure reason is not assigned.//   "FAILED_INTENT" - Whether NLU failed to recognize user intent.//   "FAILED_WEBHOOK" - Whether webhook failed during the turn.FailureReasons []string `json:"failureReasons,omitempty"`// NoMatch: Whether NLU predicted NO_MATCH.NoMatchbool `json:"noMatch,omitempty"`// NoUserInput: Whether user provided no input.NoUserInputbool `json:"noUserInput,omitempty"`// ReachedEndPage: Whether turn resulted in End Session page.ReachedEndPagebool `json:"reachedEndPage,omitempty"`// SentimentMagnitude: Sentiment magnitude of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentMagnitudefloat64 `json:"sentimentMagnitude,omitempty"`// SentimentScore: Sentiment score of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentScorefloat64 `json:"sentimentScore,omitempty"`// UserEscalated: Whether user was specifically asking for a live agent.UserEscalatedbool `json:"userEscalated,omitempty"`// WebhookStatuses: Human-readable statuses of the webhooks triggered during// this turn.WebhookStatuses []string `json:"webhookStatuses,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentEscalated") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentEscalated") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3TurnSignals: Collection of all signals that wereextracted for a single turn of the conversation.

func (GoogleCloudDialogflowCxV3TurnSignals)MarshalJSONadded inv0.107.0

func (*GoogleCloudDialogflowCxV3TurnSignals)UnmarshalJSONadded inv0.123.0

func (s *GoogleCloudDialogflowCxV3TurnSignals) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowCxV3Webhookadded inv0.82.0

type GoogleCloudDialogflowCxV3Webhook struct {// Disabled: Indicates whether the webhook is disabled.Disabledbool `json:"disabled,omitempty"`// DisplayName: Required. The human-readable name of the webhook, unique within// the agent.DisplayNamestring `json:"displayName,omitempty"`// GenericWebService: Configuration for a generic web service.GenericWebService *GoogleCloudDialogflowCxV3WebhookGenericWebService `json:"genericWebService,omitempty"`// Name: The unique identifier of the webhook. Required for the// Webhooks.UpdateWebhook method. Webhooks.CreateWebhook populates the name// automatically. Format: `projects//locations//agents//webhooks/`.Namestring `json:"name,omitempty"`// ServiceDirectory: Configuration for a Service Directory// (https://cloud.google.com/service-directory) service.ServiceDirectory *GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig `json:"serviceDirectory,omitempty"`// Timeout: Webhook execution timeout. Execution is considered failed if// Dialogflow doesn't receive a response from webhook at the end of the timeout// period. Defaults to 5 seconds, maximum allowed timeout is 30 seconds.Timeoutstring `json:"timeout,omitempty"`// ForceSendFields is a list of field names (e.g. "Disabled") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Disabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3Webhook: Webhooks host the developer's businesslogic. During a session, webhooks allow the developer to use the dataextracted by Dialogflow's natural language processing to generate dynamicresponses, validate collected data, or trigger actions on the backend.

func (GoogleCloudDialogflowCxV3Webhook)MarshalJSONadded inv0.82.0

func (sGoogleCloudDialogflowCxV3Webhook) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowCxV3WebhookGenericWebServiceadded inv0.82.0

type GoogleCloudDialogflowCxV3WebhookGenericWebService struct {// AllowedCaCerts: Optional. Specifies a list of allowed custom CA certificates// (in DER format) for HTTPS verification. This overrides the default SSL trust// store. If this is empty or unspecified, Dialogflow will use Google's default// trust store to verify certificates. N.B. Make sure the HTTPS server// certificates are signed with "subject alt name". For instance a certificate// can be self-signed using the following command, “` openssl x509 -req -days// 200 -in example.com.csr \ -signkey example.com.key \ -out example.com.crt \// -extfile <(printf "\nsubjectAltName='DNS:www.example.com'") “`AllowedCaCerts []string `json:"allowedCaCerts,omitempty"`// HttpMethod: Optional. HTTP method for the flexible webhook calls. Standard// webhook always uses POST.//// Possible values://   "HTTP_METHOD_UNSPECIFIED" - HTTP method not specified.//   "POST" - HTTP POST Method.//   "GET" - HTTP GET Method.//   "HEAD" - HTTP HEAD Method.//   "PUT" - HTTP PUT Method.//   "DELETE" - HTTP DELETE Method.//   "PATCH" - HTTP PATCH Method.//   "OPTIONS" - HTTP OPTIONS Method.HttpMethodstring `json:"httpMethod,omitempty"`// OauthConfig: Optional. The OAuth configuration of the webhook. If specified,// Dialogflow will initiate the OAuth client credential flow to exchange an// access token from the 3rd party platform and put it in the auth header.OauthConfig *GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig `json:"oauthConfig,omitempty"`// ParameterMapping: Optional. Maps the values extracted from specific fields// of the flexible webhook response into session parameters. - Key: session// parameter name - Value: field path in the webhook responseParameterMapping map[string]string `json:"parameterMapping,omitempty"`// Password: The password for HTTP Basic authentication.Passwordstring `json:"password,omitempty"`// RequestBody: Optional. Defines a custom JSON object as request body to send// to flexible webhook.RequestBodystring `json:"requestBody,omitempty"`// RequestHeaders: The HTTP request headers to send together with webhook// requests.RequestHeaders map[string]string `json:"requestHeaders,omitempty"`// SecretVersionForUsernamePassword: Optional. The SecretManager secret version// resource storing the username:password pair for HTTP Basic authentication.// Format: `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForUsernamePasswordstring `json:"secretVersionForUsernamePassword,omitempty"`// SecretVersionsForRequestHeaders: Optional. The HTTP request headers to send// together with webhook requests. Header values are stored in SecretManager// secret versions. When the same header name is specified in both// `request_headers` and `secret_versions_for_request_headers`, the value in// `secret_versions_for_request_headers` will be used.SecretVersionsForRequestHeaders map[string]GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue `json:"secretVersionsForRequestHeaders,omitempty"`// ServiceAccountAuthConfig: Optional. Configuration for service account// authentication.ServiceAccountAuthConfig *GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig `json:"serviceAccountAuthConfig,omitempty"`// ServiceAgentAuth: Optional. Indicate the auth token type generated from the// Diglogflow service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).// The generated token is sent in the Authorization header.//// Possible values://   "SERVICE_AGENT_AUTH_UNSPECIFIED" - Service agent auth type unspecified.// Default to ID_TOKEN.//   "NONE" - No token used.//   "ID_TOKEN" - Use [ID// token](https://cloud.google.com/docs/authentication/token-types#id)// generated from service agent. This can be used to access Cloud Function and// Cloud Run after you grant Invoker role to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.//   "ACCESS_TOKEN" - Use [access// token](https://cloud.google.com/docs/authentication/token-types#access)// generated from service agent. This can be used to access other Google Cloud// APIs after you grant required roles to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.ServiceAgentAuthstring `json:"serviceAgentAuth,omitempty"`// Uri: Required. The webhook URI for receiving POST requests. It must use// https protocol.Uristring `json:"uri,omitempty"`// Username: The user name for HTTP Basic authentication.Usernamestring `json:"username,omitempty"`// WebhookType: Optional. Type of the webhook.//// Possible values://   "WEBHOOK_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "STANDARD" - Represents a standard webhook.//   "FLEXIBLE" - Represents a flexible webhook.WebhookTypestring `json:"webhookType,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowedCaCerts") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowedCaCerts") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookGenericWebService: Represents configurationfor a generic web service.

func (GoogleCloudDialogflowCxV3WebhookGenericWebService)MarshalJSONadded inv0.82.0

typeGoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfigadded inv0.171.0

type GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig struct {// ClientId: Required. The client ID provided by the 3rd party platform.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. The client secret provided by the 3rd party// platform.ClientSecretstring `json:"clientSecret,omitempty"`// Scopes: Optional. The OAuth scopes to grant.Scopes []string `json:"scopes,omitempty"`// SecretVersionForClientSecret: Optional. The name of the SecretManager secret// version resource storing the client secret. If this field is set, the// `client_secret` field will be ignored. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForClientSecretstring `json:"secretVersionForClientSecret,omitempty"`// TokenEndpoint: Required. The token endpoint provided by the 3rd party// platform to exchange an access token.TokenEndpointstring `json:"tokenEndpoint,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClientId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig: Representsconfiguration of OAuth client credential flow for 3rd party APIauthentication.

func (GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValueadded inv0.229.0

type GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue struct {// SecretVersion: Required. The SecretManager secret version resource storing// the header value. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionstring `json:"secretVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "SecretVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SecretVersion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue:Represents the value of an HTTP header stored in a SecretManager secretversion.

func (GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfigadded inv0.255.0

type GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig struct {// ServiceAccount: Required. The email address of the service account used to// authenticate the webhook call. Dialogflow uses this service account to// exchange an access token and the access token is then sent in the// `Authorization` header of the webhook request. The service account must have// the `roles/iam.serviceAccountTokenCreator` role granted to the Dialogflow// service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).ServiceAccountstring `json:"serviceAccount,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAccount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ServiceAccount") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig:Configuration for authentication using a service account.

func (GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig)MarshalJSONadded inv0.255.0

typeGoogleCloudDialogflowCxV3WebhookRequestadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookRequest struct {// DetectIntentResponseId: Always present. The unique identifier of the// DetectIntentResponse that will be returned to the API caller.DetectIntentResponseIdstring `json:"detectIntentResponseId,omitempty"`// DtmfDigits: If DTMF was provided as input, this field will contain the DTMF// digits.DtmfDigitsstring `json:"dtmfDigits,omitempty"`// FulfillmentInfo: Always present. Information about the fulfillment that// triggered this webhook call.FulfillmentInfo *GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo `json:"fulfillmentInfo,omitempty"`// IntentInfo: Information about the last matched intent.IntentInfo *GoogleCloudDialogflowCxV3WebhookRequestIntentInfo `json:"intentInfo,omitempty"`// LanguageCode: The language code specified in the original request.LanguageCodestring `json:"languageCode,omitempty"`// LanguageInfo: Information about the language of the request.LanguageInfo *GoogleCloudDialogflowCxV3LanguageInfo `json:"languageInfo,omitempty"`// Messages: The list of rich message responses to present to the user. Webhook// can choose to append or replace this list in// WebhookResponse.fulfillment_response;Messages []*GoogleCloudDialogflowCxV3ResponseMessage `json:"messages,omitempty"`// PageInfo: Information about page status.PageInfo *GoogleCloudDialogflowCxV3PageInfo `json:"pageInfo,omitempty"`// Payload: Custom data set in QueryParameters.payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SentimentAnalysisResult: The sentiment analysis result of the current user// request. The field is filled when sentiment analysis is configured to be// enabled for the request.SentimentAnalysisResult *GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult `json:"sentimentAnalysisResult,omitempty"`// SessionInfo: Information about session status.SessionInfo *GoogleCloudDialogflowCxV3SessionInfo `json:"sessionInfo,omitempty"`// Text: If natural language text was provided as input, this field will// contain a copy of the text.Textstring `json:"text,omitempty"`// Transcript: If natural language speech audio was provided as input, this// field will contain the transcript for the audio.Transcriptstring `json:"transcript,omitempty"`// TriggerEvent: If an event was provided as input, this field will contain the// name of the event.TriggerEventstring `json:"triggerEvent,omitempty"`// TriggerIntent: If an intent was provided as input, this field will contain a// copy of the intent identifier. Format:// `projects//locations//agents//intents/`.TriggerIntentstring `json:"triggerIntent,omitempty"`// ForceSendFields is a list of field names (e.g. "DetectIntentResponseId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DetectIntentResponseId") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookRequest: The request message for a webhookcall. The request is sent as a JSON object and the field names will bepresented in camel cases. You may see undocumented fields in an actualrequest. These fields are used internally by Dialogflow and should beignored.

func (GoogleCloudDialogflowCxV3WebhookRequest)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo struct {// Tag: Always present. The value of the Fulfillment.tag field will be// populated in this field by Dialogflow when the associated webhook is called.// The tag is typically used by the webhook service to identify which// fulfillment is being called, but it could be used for other purposes.Tagstring `json:"tag,omitempty"`// ForceSendFields is a list of field names (e.g. "Tag") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Tag") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo: Representsfulfillment information communicated to the webhook.

func (GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3WebhookRequestIntentInfoadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookRequestIntentInfo struct {// Confidence: The confidence of the matched intent. Values range from 0.0// (completely uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// DisplayName: Always present. The display name of the last matched intent.DisplayNamestring `json:"displayName,omitempty"`// LastMatchedIntent: Always present. The unique identifier of the last matched// intent. Format: `projects//locations//agents//intents/`.LastMatchedIntentstring `json:"lastMatchedIntent,omitempty"`// Parameters: Parameters identified as a result of intent matching. This is a// map of the name of the identified parameter to the value of the parameter// identified from the user's utterance. All parameters defined in the matched// intent that are identified will be surfaced here.Parameters map[string]GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookRequestIntentInfo: Represents intentinformation communicated to the webhook.

func (GoogleCloudDialogflowCxV3WebhookRequestIntentInfo)MarshalJSONadded inv0.34.0

func (*GoogleCloudDialogflowCxV3WebhookRequestIntentInfo)UnmarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValueadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue struct {// OriginalValue: Always present. Original text value extracted from user// utterance.OriginalValuestring `json:"originalValue,omitempty"`// ResolvedValue: Always present. Structured value for the parameter extracted// from user utterance.ResolvedValue interface{} `json:"resolvedValue,omitempty"`// ForceSendFields is a list of field names (e.g. "OriginalValue") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OriginalValue") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue:Represents a value for an intent parameter.

func (GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResultadded inv0.41.0

type GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult struct {// Magnitude: A non-negative number in the [0, +inf) range, which represents// the absolute magnitude of sentiment, regardless of score (positive or// negative).Magnitudefloat64 `json:"magnitude,omitempty"`// Score: Sentiment score between -1.0 (negative sentiment) and 1.0 (positive// sentiment).Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Magnitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Magnitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult: Representsthe result of sentiment analysis.

func (GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult)MarshalJSONadded inv0.41.0

func (*GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult)UnmarshalJSONadded inv0.41.0

typeGoogleCloudDialogflowCxV3WebhookResponseadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookResponse struct {// FulfillmentResponse: The fulfillment response to send to the user. This// field can be omitted by the webhook if it does not intend to send any// response to the user.FulfillmentResponse *GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse `json:"fulfillmentResponse,omitempty"`// PageInfo: Information about page status. This field can be omitted by the// webhook if it does not intend to modify page status.PageInfo *GoogleCloudDialogflowCxV3PageInfo `json:"pageInfo,omitempty"`// Payload: Value to append directly to QueryResult.webhook_payloads.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SessionInfo: Information about session status. This field can be omitted by// the webhook if it does not intend to modify session status.SessionInfo *GoogleCloudDialogflowCxV3SessionInfo `json:"sessionInfo,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// ForceSendFields is a list of field names (e.g. "FulfillmentResponse") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FulfillmentResponse") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookResponse: The response message for a webhookcall.

func (GoogleCloudDialogflowCxV3WebhookResponse)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponseadded inv0.34.0

type GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse struct {// MergeBehavior: Merge behavior for `messages`.//// Possible values://   "MERGE_BEHAVIOR_UNSPECIFIED" - Not specified. `APPEND` will be used.//   "APPEND" - `messages` will be appended to the list of messages waiting to// be sent to the user.//   "REPLACE" - `messages` will replace the list of messages waiting to be// sent to the user.MergeBehaviorstring `json:"mergeBehavior,omitempty"`// Messages: The list of rich message responses to present to the user.Messages []*GoogleCloudDialogflowCxV3ResponseMessage `json:"messages,omitempty"`// ForceSendFields is a list of field names (e.g. "MergeBehavior") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MergeBehavior") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse: Represents afulfillment response to the user.

func (GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3WebhookServiceDirectoryConfigadded inv0.82.0

type GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig struct {// GenericWebService: Generic Service configuration of this webhook.GenericWebService *GoogleCloudDialogflowCxV3WebhookGenericWebService `json:"genericWebService,omitempty"`// Service: Required. The name of Service Directory// (https://cloud.google.com/service-directory) service. Format:// `projects//locations//namespaces//services/`. `Location ID` of the service// directory must be the same as the location of the agent.Servicestring `json:"service,omitempty"`// ForceSendFields is a list of field names (e.g. "GenericWebService") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GenericWebService") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig: Representsconfiguration for a Service Directory(https://cloud.google.com/service-directory) service.

func (GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig)MarshalJSONadded inv0.82.0

typeGoogleCloudDialogflowCxV3beta1Actionadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1Action struct {// AgentUtterance: Optional. Action performed by the agent as a message.AgentUtterance *GoogleCloudDialogflowCxV3beta1AgentUtterance `json:"agentUtterance,omitempty"`// CompleteTime: Output only. Timestamp of the completion of the agent action.CompleteTimestring `json:"completeTime,omitempty"`// DisplayName: Output only. The display name of the action.DisplayNamestring `json:"displayName,omitempty"`// Event: Optional. The agent received an event from the customer or a system// event is emitted.Event *GoogleCloudDialogflowCxV3beta1Event `json:"event,omitempty"`// FlowInvocation: Optional. Action performed on behalf of the agent by// invoking a CX flow.FlowInvocation *GoogleCloudDialogflowCxV3beta1FlowInvocation `json:"flowInvocation,omitempty"`// FlowStateUpdate: Optional. Output only. The state machine update in flows.FlowStateUpdate *GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdate `json:"flowStateUpdate,omitempty"`// FlowTransition: Optional. Action performed on behalf of the agent by// transitioning to a target CX flow.FlowTransition *GoogleCloudDialogflowCxV3beta1FlowTransition `json:"flowTransition,omitempty"`// IntentMatch: Optional. Output only. Intent Match in flows.IntentMatch *GoogleCloudDialogflowCxV3beta1ActionIntentMatch `json:"intentMatch,omitempty"`// LlmCall: Optional. Output only. LLM call performed by the agent.LlmCall *GoogleCloudDialogflowCxV3beta1LlmCall `json:"llmCall,omitempty"`// PlaybookInvocation: Optional. Action performed on behalf of the agent by// invoking a child playbook.PlaybookInvocation *GoogleCloudDialogflowCxV3beta1PlaybookInvocation `json:"playbookInvocation,omitempty"`// PlaybookTransition: Optional. Action performed on behalf of the agent by// transitioning to a target playbook.PlaybookTransition *GoogleCloudDialogflowCxV3beta1PlaybookTransition `json:"playbookTransition,omitempty"`// StartTime: Output only. Timestamp of the start of the agent action.StartTimestring `json:"startTime,omitempty"`// Status: Optional. Output only. The status of the action.Status *GoogleCloudDialogflowCxV3beta1Status `json:"status,omitempty"`// Stt: Optional. Speech-to-text action performed by the agent.Stt *GoogleCloudDialogflowCxV3beta1ActionSTT `json:"stt,omitempty"`// SubExecutionSteps: Optional. The detailed tracing information for sub// execution steps of the action.SubExecutionSteps []*GoogleCloudDialogflowCxV3beta1Span `json:"subExecutionSteps,omitempty"`// ToolUse: Optional. Action performed on behalf of the agent by calling a// plugin tool.ToolUse *GoogleCloudDialogflowCxV3beta1ToolUse `json:"toolUse,omitempty"`// Tts: Optional. Text-to-speech action performed by the agent.Tts *GoogleCloudDialogflowCxV3beta1ActionTTS `json:"tts,omitempty"`// UserUtterance: Optional. Agent obtained a message from the customer.UserUtterance *GoogleCloudDialogflowCxV3beta1UserUtterance `json:"userUtterance,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentUtterance") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentUtterance") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Action: Action performed by end user orDialogflow agent in the conversation.

func (GoogleCloudDialogflowCxV3beta1Action)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdate struct {// Destination: The destination of the transition. Format:// `projects//locations//agents//flows//pages/` or// `projects//locations//agents//playbooks/`.Destinationstring `json:"destination,omitempty"`// EventType: The type of the event that triggered the state update.EventTypestring `json:"eventType,omitempty"`// FunctionCall: The function call to execute.FunctionCall *GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateFunctionCall `json:"functionCall,omitempty"`// PageState: The updated page and flow state.PageState *GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdatePageState `json:"pageState,omitempty"`// UpdatedParameters: The updated parameters.UpdatedParametersgoogleapi.RawMessage `json:"updatedParameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Destination") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Destination") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdate: Stores metadata of thestate update action, such as a state machine execution in flows.

func (GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdate)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateFunctionCalladded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateFunctionCall struct {// Name: The name of the function call.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateFunctionCall: Stores themetadata of a function call to execute.

func (GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdateFunctionCall)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ActionFlowStateUpdatePageStateadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdatePageState struct {// DisplayName: The display name of the page.DisplayNamestring `json:"displayName,omitempty"`// Page: The ID of the page. Format:// `projects//locations//agents//flows//pages/`.Pagestring `json:"page,omitempty"`// Status: The status of the page.Statusstring `json:"status,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdatePageState: Stores thestate of a page and its flow.

func (GoogleCloudDialogflowCxV3beta1ActionFlowStateUpdatePageState)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ActionIntentMatchadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionIntentMatch struct {// MatchedIntents: The matched intent.MatchedIntents []*GoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntent `json:"matchedIntents,omitempty"`// ForceSendFields is a list of field names (e.g. "MatchedIntents") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MatchedIntents") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ActionIntentMatch: Stores metadata of theintent match action.

func (GoogleCloudDialogflowCxV3beta1ActionIntentMatch)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntentadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntent struct {// DisplayName: The display name of the matched intent.DisplayNamestring `json:"displayName,omitempty"`// GenerativeFallback: The generative fallback response of the matched intent.GenerativeFallbackgoogleapi.RawMessage `json:"generativeFallback,omitempty"`// IntentId: The ID of the matched intent.IntentIdstring `json:"intentId,omitempty"`// Score: The score of the matched intent.Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntent: Stores thematched intent, which is the result of the intent match action.

func (GoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntent)MarshalJSONadded inv0.230.0

func (*GoogleCloudDialogflowCxV3beta1ActionIntentMatchMatchedIntent)UnmarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ActionSTTadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionSTT struct {}

GoogleCloudDialogflowCxV3beta1ActionSTT: Stores metadata of theSpeech-to-Text action.

typeGoogleCloudDialogflowCxV3beta1ActionTTSadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ActionTTS struct {}

GoogleCloudDialogflowCxV3beta1ActionTTS: Stores metadata of theText-to-Speech action.

typeGoogleCloudDialogflowCxV3beta1AdvancedSettingsadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1AdvancedSettings struct {// AudioExportGcsDestination: If present, incoming audio is exported by// Dialogflow to the configured Google Cloud Storage destination. Exposed at// the following levels: - Agent level - Flow levelAudioExportGcsDestination *GoogleCloudDialogflowCxV3beta1GcsDestination `json:"audioExportGcsDestination,omitempty"`// DtmfSettings: Settings for DTMF. Exposed at the following levels: - Agent// level - Flow level - Page level - Parameter level.DtmfSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings `json:"dtmfSettings,omitempty"`// LoggingSettings: Settings for logging. Settings for Dialogflow History,// Contact Center messages, StackDriver logs, and speech logging. Exposed at// the following levels: - Agent level.LoggingSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings `json:"loggingSettings,omitempty"`// SpeechSettings: Settings for speech to text detection. Exposed at the// following levels: - Agent level - Flow level - Page level - Parameter levelSpeechSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings `json:"speechSettings,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioExportGcsDestination")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioExportGcsDestination") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AdvancedSettings: Hierarchical advancedsettings for agent/flow/page/fulfillment/parameter. Settings exposed atlower level overrides the settings exposed at higher level. Overridingoccurs at the sub-setting level. For example, theplayback_interruption_settings at fulfillment level only overrides theplayback_interruption_settings at the agent level, leaving other settings atthe agent level unchanged. DTMF settings does not override each other. DTMFsettings set at different levels define DTMF detections running in parallel.Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.

func (GoogleCloudDialogflowCxV3beta1AdvancedSettings)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings struct {// Enabled: If true, incoming audio is processed for DTMF (dual tone multi// frequency) events. For example, if the caller presses a button on their// telephone keypad and DTMF processing is enabled, Dialogflow will detect the// event (e.g. a "3" was pressed) in the incoming audio and pass the event to// the bot to drive business logic (e.g. when 3 is pressed, return the account// balance).Enabledbool `json:"enabled,omitempty"`// EndpointingTimeoutDuration: Endpoint timeout setting for matching dtmf input// to regex.EndpointingTimeoutDurationstring `json:"endpointingTimeoutDuration,omitempty"`// FinishDigit: The digit that terminates a DTMF digit sequence.FinishDigitstring `json:"finishDigit,omitempty"`// InterdigitTimeoutDuration: Interdigit timeout setting for matching dtmf// input to regex.InterdigitTimeoutDurationstring `json:"interdigitTimeoutDuration,omitempty"`// MaxDigits: Max length of DTMF digits.MaxDigitsint64 `json:"maxDigits,omitempty"`// ForceSendFields is a list of field names (e.g. "Enabled") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Enabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings: Define behaviorsfor DTMF (dual tone multi frequency).

func (GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings struct {// EnableConsentBasedRedaction: Enables consent-based end-user input redaction,// if true, a pre-defined session parameter// `$session.params.conversation-redaction` will be used to determine if the// utterance should be redacted.EnableConsentBasedRedactionbool `json:"enableConsentBasedRedaction,omitempty"`// EnableInteractionLogging: Enables DF Interaction logging.EnableInteractionLoggingbool `json:"enableInteractionLogging,omitempty"`// EnableStackdriverLogging: Enables Google Cloud Logging.EnableStackdriverLoggingbool `json:"enableStackdriverLogging,omitempty"`// ForceSendFields is a list of field names (e.g.// "EnableConsentBasedRedaction") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableConsentBasedRedaction") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings: Definebehaviors on logging.

func (GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettingsadded inv0.170.0

type GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings struct {// EndpointerSensitivity: Sensitivity of the speech model that detects the end// of speech. Scale from 0 to 100.EndpointerSensitivityint64 `json:"endpointerSensitivity,omitempty"`// Models: Mapping from language to Speech-to-Text model. The mapped// Speech-to-Text model will be selected for requests from its corresponding// language. For more information, see Speech models// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).Models map[string]string `json:"models,omitempty"`// NoSpeechTimeout: Timeout before detecting no speech.NoSpeechTimeoutstring `json:"noSpeechTimeout,omitempty"`// UseTimeoutBasedEndpointing: Use timeout based endpointing, interpreting// endpointer sensitivity as seconds of timeout value.UseTimeoutBasedEndpointingbool `json:"useTimeoutBasedEndpointing,omitempty"`// ForceSendFields is a list of field names (e.g. "EndpointerSensitivity") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndpointerSensitivity") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings: Definebehaviors of speech to text detection.

func (GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings)MarshalJSONadded inv0.170.0

typeGoogleCloudDialogflowCxV3beta1Agent

type GoogleCloudDialogflowCxV3beta1Agent struct {// AdvancedSettings: Hierarchical advanced settings for this agent. The// settings exposed at the lower level overrides the settings exposed at the// higher level.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// AnswerFeedbackSettings: Optional. Answer feedback collection settings.AnswerFeedbackSettings *GoogleCloudDialogflowCxV3beta1AgentAnswerFeedbackSettings `json:"answerFeedbackSettings,omitempty"`// AvatarUri: The URI of the agent's avatar. Avatars are used throughout the// Dialogflow console and in the self-hosted Web Demo// (https://cloud.google.com/dialogflow/docs/integrations/web-demo)// integration.AvatarUristring `json:"avatarUri,omitempty"`// BigqueryExportSettings: Optional. The BigQuery export settings for this// agent. The conversation data will be exported to BigQuery tables if it is// enabled. By default, BigQuery export settings will not be exported with// agent. You need to set include_bigquery_export_settings to include it in the// exported agent.BigqueryExportSettings *GoogleCloudDialogflowCxV3beta1BigQueryExportSettings `json:"bigqueryExportSettings,omitempty"`// ClientCertificateSettings: Optional. Settings for custom client// certificates.ClientCertificateSettings *GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings `json:"clientCertificateSettings,omitempty"`// DefaultLanguageCode: Required. Immutable. The default language of the agent// as a language tag. See Language Support// (https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list// of the currently supported language codes. This field cannot be set by the// Agents.UpdateAgent method.DefaultLanguageCodestring `json:"defaultLanguageCode,omitempty"`// Description: The description of the agent. The maximum length is 500// characters. If exceeded, the request is rejected.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the agent, unique within// the location.DisplayNamestring `json:"displayName,omitempty"`// EnableMultiLanguageTraining: Optional. Enable training multi-lingual models// for this agent. These models will be trained on all the languages supported// by the agent.EnableMultiLanguageTrainingbool `json:"enableMultiLanguageTraining,omitempty"`// EnableSpellCorrection: Indicates if automatic spell correction is enabled in// detect intent requests.EnableSpellCorrectionbool `json:"enableSpellCorrection,omitempty"`// EnableStackdriverLogging: Indicates if stackdriver logging is enabled for// the agent. Please use agent.advanced_settings instead.EnableStackdriverLoggingbool `json:"enableStackdriverLogging,omitempty"`// GenAppBuilderSettings: Gen App Builder-related agent-level settings.GenAppBuilderSettings *GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings `json:"genAppBuilderSettings,omitempty"`// GitIntegrationSettings: Git integration settings for this agent.GitIntegrationSettings *GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings `json:"gitIntegrationSettings,omitempty"`// Locked: Indicates whether the agent is locked for changes. If the agent is// locked, modifications to the agent will be rejected except for RestoreAgent.Lockedbool `json:"locked,omitempty"`// Name: The unique identifier of the agent. Required for the// Agents.UpdateAgent method. Agents.CreateAgent populates the name// automatically. Format: `projects//locations//agents/`.Namestring `json:"name,omitempty"`// PersonalizationSettings: Optional. Settings for end user personalization.PersonalizationSettings *GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings `json:"personalizationSettings,omitempty"`// SatisfiesPzi: Optional. Output only. A read only boolean field reflecting// Zone Isolation status of the agent.SatisfiesPzibool `json:"satisfiesPzi,omitempty"`// SatisfiesPzs: Optional. Output only. A read only boolean field reflecting// Zone Separation status of the agent.SatisfiesPzsbool `json:"satisfiesPzs,omitempty"`// SecuritySettings: Name of the SecuritySettings reference for the agent.// Format: `projects//locations//securitySettings/`.SecuritySettingsstring `json:"securitySettings,omitempty"`// SpeechToTextSettings: Speech recognition related settings.SpeechToTextSettings *GoogleCloudDialogflowCxV3beta1SpeechToTextSettings `json:"speechToTextSettings,omitempty"`// StartFlow: Name of the start flow in this agent. A start flow will be// automatically created when the agent is created, and can only be deleted by// deleting the agent. Format: `projects//locations//agents//flows/`. Currently// only the default start flow with id "00000000-0000-0000-0000-000000000000"// is allowed.StartFlowstring `json:"startFlow,omitempty"`// StartPlaybook: Name of the start playbook in this agent. A start playbook// will be automatically created when the agent is created, and can only be// deleted by deleting the agent. Format:// `projects//locations//agents//playbooks/`. Currently only the default// playbook with id "00000000-0000-0000-0000-000000000000" is allowed.StartPlaybookstring `json:"startPlaybook,omitempty"`// SupportedLanguageCodes: The list of all languages supported by the agent// (except for the `default_language_code`).SupportedLanguageCodes []string `json:"supportedLanguageCodes,omitempty"`// TextToSpeechSettings: Settings on instructing the speech synthesizer on how// to generate the output audio content.TextToSpeechSettings *GoogleCloudDialogflowCxV3beta1TextToSpeechSettings `json:"textToSpeechSettings,omitempty"`// TimeZone: Required. The time zone of the agent from the time zone database// (https://www.iana.org/time-zones), e.g., America/New_York, Europe/Paris.TimeZonestring `json:"timeZone,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Agent: Agents are best described as NaturalLanguage Understanding (NLU) modules that transform user requests intoactionable data. You can include agents in your app, product, or service todetermine user intent and respond to the user in a natural way. After youcreate an agent, you can add Intents, Entity Types, Flows, Fulfillments,Webhooks, TransitionRouteGroups and so on to manage the conversation flows.

func (GoogleCloudDialogflowCxV3beta1Agent)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1AgentAnswerFeedbackSettingsadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1AgentAnswerFeedbackSettings struct {// EnableAnswerFeedback: Optional. If enabled, end users will be able to// provide answer feedback to Dialogflow responses. Feature works only if// interaction logging is enabled in the Dialogflow agent.EnableAnswerFeedbackbool `json:"enableAnswerFeedback,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableAnswerFeedback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableAnswerFeedback") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentAnswerFeedbackSettings: Settings foranswer feedback collection.

func (GoogleCloudDialogflowCxV3beta1AgentAnswerFeedbackSettings)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1AgentClientCertificateSettingsadded inv0.195.0

type GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings struct {// Passphrase: Optional. The name of the SecretManager secret version resource// storing the passphrase. 'passphrase' should be left unset if the private key// is not encrypted. Format:// `projects/{project}/secrets/{secret}/versions/{version}`Passphrasestring `json:"passphrase,omitempty"`// PrivateKey: Required. The name of the SecretManager secret version resource// storing the private key encoded in PEM format. Format:// `projects/{project}/secrets/{secret}/versions/{version}`PrivateKeystring `json:"privateKey,omitempty"`// SslCertificate: Required. The ssl certificate encoded in PEM format. This// string must include the begin header and end footer lines.SslCertificatestring `json:"sslCertificate,omitempty"`// ForceSendFields is a list of field names (e.g. "Passphrase") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Passphrase") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings: Settings forcustom client certificates.

func (GoogleCloudDialogflowCxV3beta1AgentClientCertificateSettings)MarshalJSONadded inv0.195.0

typeGoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings struct {// Engine: Required. The full name of the Gen App Builder engine related to// this agent if there is one. Format: `projects/{Project// ID}/locations/{Location ID}/collections/{Collection ID}/engines/{Engine ID}`Enginestring `json:"engine,omitempty"`// ForceSendFields is a list of field names (e.g. "Engine") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Engine") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings: Settings for GenApp Builder.

func (GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsadded inv0.131.0

type GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings struct {// GitConnectionSettings: Git connection settings.GitConnectionSettings *GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings `json:"gitConnectionSettings,omitempty"`// GithubSettings: GitHub settings.GithubSettings *GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings `json:"githubSettings,omitempty"`// ForceSendFields is a list of field names (e.g. "GitConnectionSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GitConnectionSettings") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings: Settings forconnecting to Git repository for an agent.

func (GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings)MarshalJSONadded inv0.131.0

typeGoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettingsadded inv0.225.0

type GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings struct {// AccessTokenSecret: The name of the SecretManager secret version resource// storing the git access token. Format:// `projects/{project}/secrets/{secret}/versions/{version}`AccessTokenSecretstring `json:"accessTokenSecret,omitempty"`// Branches: Optional. List of branches configured for the repository.Branches []string `json:"branches,omitempty"`// DisplayName: Required. Display name for the repositoryDisplayNamestring `json:"displayName,omitempty"`// RepositoryUri: Required. Git server reporitory URI.RepositoryUristring `json:"repositoryUri,omitempty"`// TrackingBranch: Required. Default branch of the repository.TrackingBranchstring `json:"trackingBranch,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessTokenSecret") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AccessTokenSecret") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings: Integration settings for a Git service hosted on Cloud Run.

func (GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGitConnectionSettings)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettingsadded inv0.131.0

type GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings struct {// AccessToken: The access token used to authenticate the access to the GitHub// repository.AccessTokenstring `json:"accessToken,omitempty"`// Branches: A list of branches configured to be used from Dialogflow.Branches []string `json:"branches,omitempty"`// DisplayName: The unique repository display name for the GitHub repository.DisplayNamestring `json:"displayName,omitempty"`// RepositoryUri: The GitHub repository URI related to the agent.RepositoryUristring `json:"repositoryUri,omitempty"`// TrackingBranch: The branch of the GitHub repository tracked for this agent.TrackingBranchstring `json:"trackingBranch,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AccessToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings:Settings of integration with GitHub.

func (GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings)MarshalJSONadded inv0.131.0

typeGoogleCloudDialogflowCxV3beta1AgentPersonalizationSettingsadded inv0.170.0

type GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings struct {// DefaultEndUserMetadata: Optional. Default end user metadata, used when// processing DetectIntent requests. Recommended to be filled as a template// instead of hard-coded value, for example { "age": "$session.params.age" }.// The data will be merged with the QueryParameters.end_user_metadata in// DetectIntentRequest.query_params during query processing.DefaultEndUserMetadatagoogleapi.RawMessage `json:"defaultEndUserMetadata,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultEndUserMetadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultEndUserMetadata") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings: Settings for enduser personalization.

func (GoogleCloudDialogflowCxV3beta1AgentPersonalizationSettings)MarshalJSONadded inv0.170.0

typeGoogleCloudDialogflowCxV3beta1AgentUtteranceadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1AgentUtterance struct {// RequireGeneration: Optional. True if the agent utterance needs to be// generated by the LLM. Only used in webhook response to differentiate from// empty text. Revisit whether we need this field or mark `text` as optional// when we expose webhook interface to customer.RequireGenerationbool `json:"requireGeneration,omitempty"`// Text: Required. Message content in text.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "RequireGeneration") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "RequireGeneration") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentUtterance: AgentUtterance represents onemessage sent by the agent.

func (GoogleCloudDialogflowCxV3beta1AgentUtterance)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1AgentValidationResultadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1AgentValidationResult struct {// FlowValidationResults: Contains all flow validation results.FlowValidationResults []*GoogleCloudDialogflowCxV3beta1FlowValidationResult `json:"flowValidationResults,omitempty"`// Name: The unique identifier of the agent validation result. Format:// `projects//locations//agents//validationResult`.Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "FlowValidationResults") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowValidationResults") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AgentValidationResult: The response messagefor Agents.GetAgentValidationResult.

func (GoogleCloudDialogflowCxV3beta1AgentValidationResult)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1AnswerFeedbackadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1AnswerFeedback struct {// CustomRating: Optional. Custom rating from the user about the provided// answer, with maximum length of 1024 characters. For example, client could// use a customized JSON object to indicate the rating.CustomRatingstring `json:"customRating,omitempty"`// Rating: Optional. Rating from user for the specific Dialogflow response.//// Possible values://   "RATING_UNSPECIFIED" - Rating not specified.//   "THUMBS_UP" - Thumbs up feedback from user.//   "THUMBS_DOWN" - Thumbs down feedback from user.Ratingstring `json:"rating,omitempty"`// RatingReason: Optional. In case of thumbs down rating provided, users can// optionally provide context about the rating.RatingReason *GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason `json:"ratingReason,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CustomRating") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CustomRating") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AnswerFeedback: Stores information aboutfeedback provided by users about a response.

func (GoogleCloudDialogflowCxV3beta1AnswerFeedback)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReasonadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason struct {// Feedback: Optional. Additional feedback about the rating. This field can be// populated without choosing a predefined `reason`.Feedbackstring `json:"feedback,omitempty"`// ReasonLabels: Optional. Custom reason labels for thumbs down rating provided// by the user. The maximum number of labels allowed is 10 and the maximum// length of a single label is 128 characters.ReasonLabels []string `json:"reasonLabels,omitempty"`// ForceSendFields is a list of field names (e.g. "Feedback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Feedback") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason: Stores extrainformation about why users provided thumbs down rating.

func (GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1AudioInput

type GoogleCloudDialogflowCxV3beta1AudioInput struct {// Audio: The natural language speech audio to be processed. A single request// can contain up to 2 minutes of speech audio data. The transcribed text// cannot contain more than 256 bytes. For non-streaming audio detect intent,// both `config` and `audio` must be provided. For streaming audio detect// intent, `config` must be provided in the first request and `audio` must be// provided in all following requests.Audiostring `json:"audio,omitempty"`// Config: Required. Instructs the speech recognizer how to process the speech// audio.Config *GoogleCloudDialogflowCxV3beta1InputAudioConfig `json:"config,omitempty"`// ForceSendFields is a list of field names (e.g. "Audio") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Audio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1AudioInput: Represents the natural speechaudio to be processed.

func (GoogleCloudDialogflowCxV3beta1AudioInput)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1BargeInConfigadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1BargeInConfig struct {// NoBargeInDuration: Duration that is not eligible for barge-in at the// beginning of the input audio.NoBargeInDurationstring `json:"noBargeInDuration,omitempty"`// TotalDuration: Total duration for the playback at the beginning of the input// audio.TotalDurationstring `json:"totalDuration,omitempty"`// ForceSendFields is a list of field names (e.g. "NoBargeInDuration") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NoBargeInDuration") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BargeInConfig: Configuration of the barge-inbehavior. Barge-in instructs the API to return a detected utterance at aproper time while the client is playing back the response audio from aprevious request. When the client sees the utterance, it should stop theplayback and immediately get ready for receiving the responses for thecurrent request. The barge-in handling requires the client to startstreaming audio input as soon as it starts playing back the audio from theprevious response. The playback is modeled into two phases: * No barge-inphase: which goes first and during which speech detection should not becarried out. * Barge-in phase: which follows the no barge-in phase andduring which the API starts speech detection and may inform the client thatan utterance has been detected. Note that no-speech event is not expected inthis phase. The client provides this configuration in terms of the durationsof those two phases. The durations are measured in terms of the audio lengthfrom the start of the input audio. No-speech event is a response withEND_OF_UTTERANCE without any transcript following up.

func (GoogleCloudDialogflowCxV3beta1BargeInConfig)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1BatchDeleteTestCasesRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1BatchDeleteTestCasesRequest struct {// Names: Required. Format of test case names:// `projects//locations//agents//testCases/`.Names []string `json:"names,omitempty"`// ForceSendFields is a list of field names (e.g. "Names") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Names") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BatchDeleteTestCasesRequest: The requestmessage for TestCases.BatchDeleteTestCases.

func (GoogleCloudDialogflowCxV3beta1BatchDeleteTestCasesRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata struct {// Errors: The test errors.Errors []*GoogleCloudDialogflowCxV3beta1TestError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata: Metadata returnedfor the TestCases.BatchRunTestCases long running operation.

func (GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1BatchRunTestCasesRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1BatchRunTestCasesRequest struct {// Environment: Optional. If not set, draft environment is assumed. Format:// `projects//locations//agents//environments/`.Environmentstring `json:"environment,omitempty"`// TestCases: Required. Format: `projects//locations//agents//testCases/`.TestCases []string `json:"testCases,omitempty"`// ForceSendFields is a list of field names (e.g. "Environment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Environment") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BatchRunTestCasesRequest: The request messagefor TestCases.BatchRunTestCases.

func (GoogleCloudDialogflowCxV3beta1BatchRunTestCasesRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1BatchRunTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1BatchRunTestCasesResponse struct {// Results: The test case results. The detailed conversation turns are empty in// this response.Results []*GoogleCloudDialogflowCxV3beta1TestCaseResult `json:"results,omitempty"`// ForceSendFields is a list of field names (e.g. "Results") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Results") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BatchRunTestCasesResponse: The responsemessage for TestCases.BatchRunTestCases.

func (GoogleCloudDialogflowCxV3beta1BatchRunTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1BigQueryExportSettingsadded inv0.200.0

type GoogleCloudDialogflowCxV3beta1BigQueryExportSettings struct {// BigqueryTable: The BigQuery table to export. Format:// `projects//datasets//tables/`.BigqueryTablestring `json:"bigqueryTable,omitempty"`// Enabled: The field to indicate whether the BigQuery export is enabled.Enabledbool `json:"enabled,omitempty"`// ForceSendFields is a list of field names (e.g. "BigqueryTable") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BigqueryTable") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BigQueryExportSettings: The settings ofBigQuery export.

func (GoogleCloudDialogflowCxV3beta1BigQueryExportSettings)MarshalJSONadded inv0.200.0

typeGoogleCloudDialogflowCxV3beta1BoostSpecadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1BoostSpec struct {// ConditionBoostSpecs: Optional. Condition boost specifications. If a document// matches multiple conditions in the specifications, boost scores from these// specifications are all applied and combined in a non-linear way. Maximum// number of specifications is 20.ConditionBoostSpecs []*GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpec `json:"conditionBoostSpecs,omitempty"`// ForceSendFields is a list of field names (e.g. "ConditionBoostSpecs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConditionBoostSpecs") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BoostSpec: Boost specification to boostcertain documents. A copy of google.cloud.discoveryengine.v1main.BoostSpec,field documentation is available athttps://cloud.google.com/generative-ai-app-builder/docs/reference/rest/v1alpha/BoostSpec

func (GoogleCloudDialogflowCxV3beta1BoostSpec)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpec struct {// Boost: Optional. Strength of the condition boost, which should be in [-1,// 1]. Negative boost means demotion. Default is 0.0. Setting to 1.0 gives the// document a big promotion. However, it does not necessarily mean that the// boosted document will be the top result at all times, nor that other// documents will be excluded. Results could still be shown even when none of// them matches the condition. And results that are significantly more relevant// to the search query can still trump your heavily favored but irrelevant// documents. Setting to -1.0 gives the document a big demotion. However,// results that are deeply relevant might still be shown. The document will// have an upstream battle to get a fairly high ranking, but it is not blocked// out completely. Setting to 0.0 means no boost applied. The boosting// condition is ignored.Boostfloat64 `json:"boost,omitempty"`// BoostControlSpec: Optional. Complex specification for custom ranking based// on customer defined attribute value.BoostControlSpec *GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpec `json:"boostControlSpec,omitempty"`// Condition: Optional. An expression which specifies a boost condition. The// syntax and supported fields are the same as a filter expression. Examples: *// To boost documents with document ID "doc_1" or "doc_2", and color "Red" or// "Blue": * (id: ANY("doc_1", "doc_2")) AND (color: ANY("Red","Blue"))Conditionstring `json:"condition,omitempty"`// ForceSendFields is a list of field names (e.g. "Boost") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Boost") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpec: Boost applies todocuments which match a condition.

func (GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpec)MarshalJSONadded inv0.152.0

func (*GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpec)UnmarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecadded inv0.193.0

type GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpec struct {// AttributeType: Optional. The attribute type to be used to determine the// boost amount. The attribute value can be derived from the field value of the// specified field_name. In the case of numerical it is straightforward i.e.// attribute_value = numerical_field_value. In the case of freshness however,// attribute_value = (time.now() - datetime_field_value).//// Possible values://   "ATTRIBUTE_TYPE_UNSPECIFIED" - Unspecified AttributeType.//   "NUMERICAL" - The value of the numerical field will be used to dynamically// update the boost amount. In this case, the attribute_value (the x value) of// the control point will be the actual value of the numerical field for which// the boost_amount is specified.//   "FRESHNESS" - For the freshness use case the attribute value will be the// duration between the current time and the date in the datetime field// specified. The value must be formatted as an XSD `dayTimeDuration` value (a// restricted subset of an ISO 8601 duration value). The pattern for this is:// `nDnM]`. E.g. `5D`, `3DT12H30M`, `T24H`.AttributeTypestring `json:"attributeType,omitempty"`// ControlPoints: Optional. The control points used to define the curve. The// monotonic function (defined through the interpolation_type above) passes// through the control points listed here.ControlPoints []*GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPoint `json:"controlPoints,omitempty"`// FieldName: Optional. The name of the field whose value will be used to// determine the boost amount.FieldNamestring `json:"fieldName,omitempty"`// InterpolationType: Optional. The interpolation type to be applied to connect// the control points listed below.//// Possible values://   "INTERPOLATION_TYPE_UNSPECIFIED" - Interpolation type is unspecified. In// this case, it defaults to Linear.//   "LINEAR" - Piecewise linear interpolation will be applied.InterpolationTypestring `json:"interpolationType,omitempty"`// ForceSendFields is a list of field names (e.g. "AttributeType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AttributeType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpec:Specification for custom ranking based on customer specified attributevalue. It provides more controls for customized ranking than the simple(condition, boost) combination above.

func (GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpec)MarshalJSONadded inv0.193.0

typeGoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPointadded inv0.193.0

type GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPoint struct {// AttributeValue: Optional. Can be one of: 1. The numerical field value. 2.// The duration spec for freshness: The value must be formatted as an XSD// `dayTimeDuration` value (a restricted subset of an ISO 8601 duration value).// The pattern for this is: `nDnM]`.AttributeValuestring `json:"attributeValue,omitempty"`// BoostAmount: Optional. The value between -1 to 1 by which to boost the score// if the attribute_value evaluates to the value specified above.BoostAmountfloat64 `json:"boostAmount,omitempty"`// ForceSendFields is a list of field names (e.g. "AttributeValue") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AttributeValue") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPoint: The control points used to define the curve. The curve definedthrough these control points can only be monotonically increasing ordecreasing(constant values are acceptable).

func (GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPoint)MarshalJSONadded inv0.193.0

func (*GoogleCloudDialogflowCxV3beta1BoostSpecConditionBoostSpecBoostControlSpecControlPoint)UnmarshalJSONadded inv0.193.0

typeGoogleCloudDialogflowCxV3beta1BoostSpecsadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1BoostSpecs struct {// DataStores: Optional. Data Stores where the boosting configuration is// applied. The full names of the referenced data stores. Formats:// `projects/{project}/locations/{location}/collections/{collection}/dataStores/// {data_store}`// `projects/{project}/locations/{location}/dataStores/{data_store}DataStores []string `json:"dataStores,omitempty"`// Spec: Optional. A list of boosting specifications.Spec []*GoogleCloudDialogflowCxV3beta1BoostSpec `json:"spec,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStores") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStores") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1BoostSpecs: Boost specifications for datastores.

func (GoogleCloudDialogflowCxV3beta1BoostSpecs)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1CalculateCoverageResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1CalculateCoverageResponse struct {// Agent: The agent to calculate coverage for. Format:// `projects//locations//agents/`.Agentstring `json:"agent,omitempty"`// IntentCoverage: Intent coverage.IntentCoverage *GoogleCloudDialogflowCxV3beta1IntentCoverage `json:"intentCoverage,omitempty"`// RouteGroupCoverage: Transition route group coverage.RouteGroupCoverage *GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverage `json:"routeGroupCoverage,omitempty"`// TransitionCoverage: Transition (excluding transition route groups) coverage.TransitionCoverage *GoogleCloudDialogflowCxV3beta1TransitionCoverage `json:"transitionCoverage,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Agent") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Agent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1CalculateCoverageResponse: The responsemessage for TestCases.CalculateCoverage.

func (GoogleCloudDialogflowCxV3beta1CalculateCoverageResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1Changelogadded inv0.60.0

type GoogleCloudDialogflowCxV3beta1Changelog struct {// Action: The action of the change.Actionstring `json:"action,omitempty"`// CreateTime: The timestamp of the change.CreateTimestring `json:"createTime,omitempty"`// DisplayName: The affected resource display name of the change.DisplayNamestring `json:"displayName,omitempty"`// LanguageCode: The affected language code of the change.LanguageCodestring `json:"languageCode,omitempty"`// Name: The unique identifier of the changelog. Format:// `projects//locations//agents//changelogs/`.Namestring `json:"name,omitempty"`// Resource: The affected resource name of the change.Resourcestring `json:"resource,omitempty"`// Type: The affected resource type.Typestring `json:"type,omitempty"`// UserEmail: Email address of the authenticated user.UserEmailstring `json:"userEmail,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Changelog: Changelogs represents a change madeto a given agent.

func (GoogleCloudDialogflowCxV3beta1Changelog)MarshalJSONadded inv0.60.0

typeGoogleCloudDialogflowCxV3beta1CodeBlockadded inv0.255.0

type GoogleCloudDialogflowCxV3beta1CodeBlock struct {// Code: Optional. Source code of the block in Python.Codestring `json:"code,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1CodeBlock: Represents a code block.

func (GoogleCloudDialogflowCxV3beta1CodeBlock)MarshalJSONadded inv0.255.0

typeGoogleCloudDialogflowCxV3beta1CompareVersionsRequestadded inv0.60.0

type GoogleCloudDialogflowCxV3beta1CompareVersionsRequest struct {// LanguageCode: The language to compare the flow versions for. If not// specified, the agent's default language is used. Many languages// (https://cloud.google.com/dialogflow/docs/reference/language) are supported.// Note: languages must be enabled in the agent before they can be used.LanguageCodestring `json:"languageCode,omitempty"`// TargetVersion: Required. Name of the target flow version to compare with the// base version. Use version ID `0` to indicate the draft version of the// specified flow. Format: `projects//locations//agents//flows//versions/`.TargetVersionstring `json:"targetVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1CompareVersionsRequest: The request messagefor Versions.CompareVersions.

func (GoogleCloudDialogflowCxV3beta1CompareVersionsRequest)MarshalJSONadded inv0.60.0

typeGoogleCloudDialogflowCxV3beta1CompareVersionsResponseadded inv0.60.0

type GoogleCloudDialogflowCxV3beta1CompareVersionsResponse struct {// BaseVersionContentJson: JSON representation of the base version content.BaseVersionContentJsonstring `json:"baseVersionContentJson,omitempty"`// CompareTime: The timestamp when the two version compares.CompareTimestring `json:"compareTime,omitempty"`// TargetVersionContentJson: JSON representation of the target version content.TargetVersionContentJsonstring `json:"targetVersionContentJson,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "BaseVersionContentJson") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BaseVersionContentJson") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1CompareVersionsResponse: The response messagefor Versions.CompareVersions.

func (GoogleCloudDialogflowCxV3beta1CompareVersionsResponse)MarshalJSONadded inv0.60.0

typeGoogleCloudDialogflowCxV3beta1ContinuousTestResultadded inv0.48.0

type GoogleCloudDialogflowCxV3beta1ContinuousTestResult struct {// Name: The resource name for the continuous test result. Format:// `projects//locations//agents//environments//continuousTestResults/`.Namestring `json:"name,omitempty"`// Result: The result of this continuous test run, i.e. whether all the tests// in this continuous test run pass or not.//// Possible values://   "AGGREGATED_TEST_RESULT_UNSPECIFIED" - Not specified. Should never be// used.//   "PASSED" - All the tests passed.//   "FAILED" - At least one test did not pass.Resultstring `json:"result,omitempty"`// RunTime: Time when the continuous testing run starts.RunTimestring `json:"runTime,omitempty"`// TestCaseResults: A list of individual test case results names in this// continuous test run.TestCaseResults []string `json:"testCaseResults,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ContinuousTestResult: Represents a result fromrunning a test case in an agent environment.

func (GoogleCloudDialogflowCxV3beta1ContinuousTestResult)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3beta1Conversationadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1Conversation struct {// Duration: Duration of the conversation.Durationstring `json:"duration,omitempty"`// Environment: Environment of the conversation. Only `name` and `display_name`// are filled in this message.Environment *GoogleCloudDialogflowCxV3beta1Environment `json:"environment,omitempty"`// FlowVersions: Flow versions used in the conversation.FlowVersions map[string]string `json:"flowVersions,omitempty"`// Flows: All the Flow the conversation has went through. Only `name` and// `display_name` are filled in this message.Flows []*GoogleCloudDialogflowCxV3beta1Flow `json:"flows,omitempty"`// Intents: All the matched Intent in the conversation. Only `name` and// `display_name` are filled in this message.Intents []*GoogleCloudDialogflowCxV3beta1Intent `json:"intents,omitempty"`// Interactions: Interactions of the conversation. Only populated for// `GetConversation` and empty for `ListConversations`.Interactions []*GoogleCloudDialogflowCxV3beta1ConversationInteraction `json:"interactions,omitempty"`// LanguageCode: The language of the conversation, which is the language of the// first request in the conversation.LanguageCodestring `json:"languageCode,omitempty"`// Metrics: Conversation metrics.Metrics *GoogleCloudDialogflowCxV3beta1ConversationMetrics `json:"metrics,omitempty"`// Name: Identifier. The identifier of the conversation. If conversation ID is// reused, interactions happened later than 48 hours of the conversation's// create time will be ignored. Format:// `projects//locations//agents//conversations/`Namestring `json:"name,omitempty"`// Pages: All the Page the conversation has went through. Only `name` and// `display_name` are filled in this message.Pages []*GoogleCloudDialogflowCxV3beta1Page `json:"pages,omitempty"`// StartTime: Start time of the conversation, which is the time of the first// request of the conversation.StartTimestring `json:"startTime,omitempty"`// Type: The type of the conversation.//// Possible values://   "TYPE_UNSPECIFIED" - Not specified. This value should never be used.//   "AUDIO" - Audio conversation. A conversation is classified as an audio// conversation if any request has STT input audio or any response has TTS// output audio.//   "TEXT" - Text conversation. A conversation is classified as a text// conversation if any request has text input and no request has STT input// audio and no response has TTS output audio.//   "UNDETERMINED" - Default conversation type for a conversation. A// conversation is classified as undetermined if none of the requests contain// text or audio input (eg. event or intent input).Typestring `json:"type,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Duration") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Duration") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Conversation: Represents a conversation.

func (GoogleCloudDialogflowCxV3beta1Conversation)MarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationInteractionadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ConversationInteraction struct {// AnswerFeedback: Answer feedback for the final response.AnswerFeedback *GoogleCloudDialogflowCxV3beta1AnswerFeedback `json:"answerFeedback,omitempty"`// CreateTime: The time that the interaction was created.CreateTimestring `json:"createTime,omitempty"`// MissingTransition: Missing transition predicted for the interaction. This// field is set only if the interaction match type was no-match.MissingTransition *GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition `json:"missingTransition,omitempty"`// PartialResponses: The partial responses of the interaction. Empty if there// is no partial response in the interaction. See the partial response// documentation.PartialResponses []*GoogleCloudDialogflowCxV3beta1DetectIntentResponse `json:"partialResponses,omitempty"`// Request: The request of the interaction.Request *GoogleCloudDialogflowCxV3beta1DetectIntentRequest `json:"request,omitempty"`// RequestUtterances: The input text or the transcript of the input audio in// the request.RequestUtterancesstring `json:"requestUtterances,omitempty"`// Response: The final response of the interaction.Response *GoogleCloudDialogflowCxV3beta1DetectIntentResponse `json:"response,omitempty"`// ResponseUtterances: The output text or the transcript of the output audio in// the responses. If multiple output messages are returned, they will be// concatenated into one.ResponseUtterancesstring `json:"responseUtterances,omitempty"`// StepMetrics: Metrics associated with different processing steps. Names and// number of steps depend on the request and can change without a notice.StepMetrics []*GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics `json:"stepMetrics,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerFeedback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerFeedback") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationInteraction: Represents aninteraction between an end user and a Dialogflow CX agent using V3(Streaming)DetectIntent API, or an interaction between an end user and aDialogflow CX agent using V2 (Streaming)AnalyzeContent API.

func (GoogleCloudDialogflowCxV3beta1ConversationInteraction)MarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransitionadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition struct {// IntentDisplayName: Name of the intent that could have triggered.IntentDisplayNamestring `json:"intentDisplayName,omitempty"`// Score: Score of the above intent. The higher it is the more likely a// transition was missed on a given page.Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "IntentDisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IntentDisplayName") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition:Information collected for DF CX agents in case NLU predicted an intent thatwas filtered out as being inactive which may indicate a missing transitionand/or absent functionality.

func (GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition)MarshalJSONadded inv0.177.0

func (*GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition)UnmarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetricsadded inv0.215.0

type GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics struct {// Latency: Processing latency of the step.Latencystring `json:"latency,omitempty"`// Name: Name of the request processing step.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Latency") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Latency") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics: Metrics ofeach processing step.

func (GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics)MarshalJSONadded inv0.215.0

typeGoogleCloudDialogflowCxV3beta1ConversationMetricsadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ConversationMetrics struct {// AverageMatchConfidence: The average confidence all of the Match in the// conversation. Values range from 0.0 (completely uncertain) to 1.0// (completely certain).AverageMatchConfidencefloat64 `json:"averageMatchConfidence,omitempty"`// HasEndInteraction: A signal that indicates the interaction with the// Dialogflow agent has ended. If any response has the// ResponseMessage.end_interaction signal, this is set to true.HasEndInteractionbool `json:"hasEndInteraction,omitempty"`// HasLiveAgentHandoff: Hands off conversation to a human agent. If any// response has the ResponseMessage.live_agent_handoffsignal, this is set to// true.HasLiveAgentHandoffbool `json:"hasLiveAgentHandoff,omitempty"`// InputAudioDuration: Duration of all the input's audio in the conversation.InputAudioDurationstring `json:"inputAudioDuration,omitempty"`// InteractionCount: The number of interactions in the conversation.InteractionCountint64 `json:"interactionCount,omitempty"`// MatchTypeCount: Match type counts.MatchTypeCount *GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount `json:"matchTypeCount,omitempty"`// MaxWebhookLatency: Maximum latency of the Webhook calls in the conversation.MaxWebhookLatencystring `json:"maxWebhookLatency,omitempty"`// OutputAudioDuration: Duration of all the output's audio in the conversation.OutputAudioDurationstring `json:"outputAudioDuration,omitempty"`// QueryInputCount: Query input counts.QueryInputCount *GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount `json:"queryInputCount,omitempty"`// ForceSendFields is a list of field names (e.g. "AverageMatchConfidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AverageMatchConfidence") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationMetrics: Represents metrics forthe conversation.

func (GoogleCloudDialogflowCxV3beta1ConversationMetrics)MarshalJSONadded inv0.177.0

func (*GoogleCloudDialogflowCxV3beta1ConversationMetrics)UnmarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCountadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount struct {// DirectIntentCount: The number of matches with type// Match.MatchType.DIRECT_INTENT.DirectIntentCountint64 `json:"directIntentCount,omitempty"`// EventCount: The number of matches with type Match.MatchType.EVENT.EventCountint64 `json:"eventCount,omitempty"`// IntentCount: The number of matches with type Match.MatchType.INTENT.IntentCountint64 `json:"intentCount,omitempty"`// NoInputCount: The number of matches with type Match.MatchType.NO_INPUT.NoInputCountint64 `json:"noInputCount,omitempty"`// NoMatchCount: The number of matches with type Match.MatchType.NO_MATCH.NoMatchCountint64 `json:"noMatchCount,omitempty"`// ParameterFillingCount: The number of matches with type// Match.MatchType.PARAMETER_FILLING.ParameterFillingCountint64 `json:"parameterFillingCount,omitempty"`// UnspecifiedCount: The number of matches with type// Match.MatchType.MATCH_TYPE_UNSPECIFIED.UnspecifiedCountint64 `json:"unspecifiedCount,omitempty"`// ForceSendFields is a list of field names (e.g. "DirectIntentCount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DirectIntentCount") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount: Count byMatch.MatchType of the matches in the conversation.

func (GoogleCloudDialogflowCxV3beta1ConversationMetricsMatchTypeCount)MarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCountadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount struct {// AudioCount: The number of AudioInput in the conversation.AudioCountint64 `json:"audioCount,omitempty"`// DtmfCount: The number of DtmfInput in the conversation.DtmfCountint64 `json:"dtmfCount,omitempty"`// EventCount: The number of EventInput in the conversation.EventCountint64 `json:"eventCount,omitempty"`// IntentCount: The number of IntentInput in the conversation.IntentCountint64 `json:"intentCount,omitempty"`// TextCount: The number of TextInput in the conversation.TextCountint64 `json:"textCount,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioCount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioCount") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount: Count bytypes of QueryInput of the requests in the conversation.

func (GoogleCloudDialogflowCxV3beta1ConversationMetricsQueryInputCount)MarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ConversationSignalsadded inv0.107.0

type GoogleCloudDialogflowCxV3beta1ConversationSignals struct {// TurnSignals: Required. Turn signals for the current turn.TurnSignals *GoogleCloudDialogflowCxV3beta1TurnSignals `json:"turnSignals,omitempty"`// ForceSendFields is a list of field names (e.g. "TurnSignals") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TurnSignals") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationSignals: This message is used tohold all the Conversation Signals data, which will be converted to JSON andexported to BigQuery.

func (GoogleCloudDialogflowCxV3beta1ConversationSignals)MarshalJSONadded inv0.107.0

typeGoogleCloudDialogflowCxV3beta1ConversationTurnadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ConversationTurn struct {// UserInput: The user input.UserInput *GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput `json:"userInput,omitempty"`// VirtualAgentOutput: The virtual agent output.VirtualAgentOutput *GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput `json:"virtualAgentOutput,omitempty"`// ForceSendFields is a list of field names (e.g. "UserInput") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "UserInput") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationTurn: One interaction between ahuman and virtual agent. The human provides some input and the virtual agentprovides a response.

func (GoogleCloudDialogflowCxV3beta1ConversationTurn)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ConversationTurnUserInputadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput struct {// EnableSentimentAnalysis: Whether sentiment analysis is enabled.EnableSentimentAnalysisbool `json:"enableSentimentAnalysis,omitempty"`// InjectedParameters: Parameters that need to be injected into the// conversation during intent detection.InjectedParametersgoogleapi.RawMessage `json:"injectedParameters,omitempty"`// Input: Supports text input, event input, dtmf input in the test case.Input *GoogleCloudDialogflowCxV3beta1QueryInput `json:"input,omitempty"`// IsWebhookEnabled: If webhooks should be allowed to trigger in response to// the user utterance. Often if parameters are injected, webhooks should not be// enabled.IsWebhookEnabledbool `json:"isWebhookEnabled,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableSentimentAnalysis") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableSentimentAnalysis") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput: The input from thehuman user.

func (GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutputadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput struct {// CurrentPage: The Page on which the utterance was spoken. Only name and// displayName will be set.CurrentPage *GoogleCloudDialogflowCxV3beta1Page `json:"currentPage,omitempty"`// DiagnosticInfo: Required. Input only. The diagnostic info output for the// turn. Required to calculate the testing coverage.DiagnosticInfogoogleapi.RawMessage `json:"diagnosticInfo,omitempty"`// Differences: Output only. If this is part of a result conversation turn, the// list of differences between the original run and the replay for this output,// if any.Differences []*GoogleCloudDialogflowCxV3beta1TestRunDifference `json:"differences,omitempty"`// SessionParameters: The session parameters available to the bot at this// point.SessionParametersgoogleapi.RawMessage `json:"sessionParameters,omitempty"`// Status: Response error from the agent in the test result. If set, other// output is empty.Status *GoogleRpcStatus `json:"status,omitempty"`// TextResponses: The text responses from the agent for the turn.TextResponses []*GoogleCloudDialogflowCxV3beta1ResponseMessageText `json:"textResponses,omitempty"`// TriggeredIntent: The Intent that triggered the response. Only name and// displayName will be set.TriggeredIntent *GoogleCloudDialogflowCxV3beta1Intent `json:"triggeredIntent,omitempty"`// ForceSendFields is a list of field names (e.g. "CurrentPage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrentPage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput: The outputfrom the virtual agent.

func (GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata

type GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata struct {// Version: Name of the created version. Format:// `projects//locations//agents//flows//versions/`.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata: Metadataassociated with the long running operation for Versions.CreateVersion.

func (GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnection struct {// DataStore: The full name of the referenced data store. Formats:// `projects/{project}/locations/{location}/collections/{collection}/dataStores/// {data_store}`// `projects/{project}/locations/{location}/dataStores/{data_store}`DataStorestring `json:"dataStore,omitempty"`// DataStoreType: The type of the connected data store.//// Possible values://   "DATA_STORE_TYPE_UNSPECIFIED" - Not specified. This value indicates that// the data store type is not specified, so it will not be used during search.//   "PUBLIC_WEB" - A data store that contains public web content.//   "UNSTRUCTURED" - A data store that contains unstructured private data.//   "STRUCTURED" - A data store that contains structured data (for example// FAQ).DataStoreTypestring `json:"dataStoreType,omitempty"`// DocumentProcessingMode: The document processing mode for the data store// connection. Should only be set for PUBLIC_WEB and UNSTRUCTURED data stores.// If not set it is considered as DOCUMENTS, as this is the legacy mode.//// Possible values://   "DOCUMENT_PROCESSING_MODE_UNSPECIFIED" - Not specified. This should be set// for STRUCTURED type data stores. Due to legacy reasons this is considered as// DOCUMENTS for STRUCTURED and PUBLIC_WEB data stores.//   "DOCUMENTS" - Documents are processed as documents.//   "CHUNKS" - Documents are converted to chunks.DocumentProcessingModestring `json:"documentProcessingMode,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnection: A data store connection.It represents a data store in Discovery Engine and the type of the contentsit contains.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnection)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals struct {// Answer: Optional. The final compiled answer.Answerstring `json:"answer,omitempty"`// AnswerGenerationModelCallSignals: Optional. Diagnostic info related to the// answer generation model call.AnswerGenerationModelCallSignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals `json:"answerGenerationModelCallSignals,omitempty"`// AnswerParts: Optional. Answer parts with relevant citations. Concatenation// of texts should add up the `answer` (not counting whitespaces).AnswerParts []*GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart `json:"answerParts,omitempty"`// CitedSnippets: Optional. Snippets cited by the answer generation model from// the most to least relevant.CitedSnippets []*GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet `json:"citedSnippets,omitempty"`// GroundingSignals: Optional. Grounding signals.GroundingSignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals `json:"groundingSignals,omitempty"`// RewriterModelCallSignals: Optional. Diagnostic info related to the rewriter// model call.RewriterModelCallSignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals `json:"rewriterModelCallSignals,omitempty"`// RewrittenQuery: Optional. Rewritten string query used for search.RewrittenQuerystring `json:"rewrittenQuery,omitempty"`// SafetySignals: Optional. Safety check result.SafetySignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals `json:"safetySignals,omitempty"`// SearchSnippets: Optional. Search snippets included in the answer generation// prompt.SearchSnippets []*GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet `json:"searchSnippets,omitempty"`// ForceSendFields is a list of field names (e.g. "Answer") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Answer") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals: Data storeconnection feature output signals. Might be only partially field ifprocessing stop before the final answer. Reasons for this can be, but arenot limited to: empty UCS search results, positive RAI check outcome,grounding failure, ...

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignalsadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals struct {// Model: Name of the generative model. For example, "gemini-ultra",// "gemini-pro", "gemini-1.5-flash" etc. Defaults to "Other" if the model is// unknown.Modelstring `json:"model,omitempty"`// ModelOutput: Output of the generative model.ModelOutputstring `json:"modelOutput,omitempty"`// RenderedPrompt: Prompt as sent to the model.RenderedPromptstring `json:"renderedPrompt,omitempty"`// ForceSendFields is a list of field names (e.g. "Model") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Model") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals: Diagnostic info related to the answer generation model call.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPartadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart struct {// SupportingIndices: Citations for this answer part. Indices of// `search_snippets`.SupportingIndices []int64 `json:"supportingIndices,omitempty"`// Text: Substring of the answer.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "SupportingIndices") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SupportingIndices") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart: Answerpart with citation.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippetadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet struct {// SearchSnippet: Details of the snippet.SearchSnippet *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet `json:"searchSnippet,omitempty"`// SnippetIndex: Index of the snippet in `search_snippets` field.SnippetIndexint64 `json:"snippetIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "SearchSnippet") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SearchSnippet") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet:Snippet cited by the answer generation model.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignalsadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals struct {// Decision: Represents the decision of the grounding check.//// Possible values://   "GROUNDING_DECISION_UNSPECIFIED" - Decision not specified.//   "ACCEPTED_BY_GROUNDING" - Grounding have accepted the answer.//   "REJECTED_BY_GROUNDING" - Grounding have rejected the answer.Decisionstring `json:"decision,omitempty"`// Score: Grounding score bucket setting.//// Possible values://   "GROUNDING_SCORE_BUCKET_UNSPECIFIED" - Score not specified.//   "VERY_LOW" - We have very low confidence that the answer is grounded.//   "LOW" - We have low confidence that the answer is grounded.//   "MEDIUM" - We have medium confidence that the answer is grounded.//   "HIGH" - We have high confidence that the answer is grounded.//   "VERY_HIGH" - We have very high confidence that the answer is grounded.Scorestring `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Decision") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Decision") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals:Grounding signals.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignalsadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals struct {// Model: Name of the generative model. For example, "gemini-ultra",// "gemini-pro", "gemini-1.5-flash" etc. Defaults to "Other" if the model is// unknown.Modelstring `json:"model,omitempty"`// ModelOutput: Output of the generative model.ModelOutputstring `json:"modelOutput,omitempty"`// RenderedPrompt: Prompt as sent to the model.RenderedPromptstring `json:"renderedPrompt,omitempty"`// ForceSendFields is a list of field names (e.g. "Model") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Model") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals: Diagnostic info related to the rewriter model call.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignalsadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals struct {// BannedPhraseMatch: Specifies banned phrase match subject.//// Possible values://   "BANNED_PHRASE_MATCH_UNSPECIFIED" - No banned phrase check was executed.//   "BANNED_PHRASE_MATCH_NONE" - All banned phrase checks led to no match.//   "BANNED_PHRASE_MATCH_QUERY" - A banned phrase matched the query.//   "BANNED_PHRASE_MATCH_RESPONSE" - A banned phrase matched the response.BannedPhraseMatchstring `json:"bannedPhraseMatch,omitempty"`// Decision: Safety decision.//// Possible values://   "SAFETY_DECISION_UNSPECIFIED" - Decision not specified.//   "ACCEPTED_BY_SAFETY_CHECK" - No manual or automatic safety check fired.//   "REJECTED_BY_SAFETY_CHECK" - One ore more safety checks fired.Decisionstring `json:"decision,omitempty"`// MatchedBannedPhrase: The matched banned phrase if there was a match.MatchedBannedPhrasestring `json:"matchedBannedPhrase,omitempty"`// ForceSendFields is a list of field names (e.g. "BannedPhraseMatch") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BannedPhraseMatch") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals:Safety check results.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippetadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet struct {// DocumentTitle: Title of the enclosing document.DocumentTitlestring `json:"documentTitle,omitempty"`// DocumentUri: Uri for the document. Present if specified for the document.DocumentUristring `json:"documentUri,omitempty"`// Metadata: Metadata associated with the document.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Text: Text included in the prompt.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "DocumentTitle") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DocumentTitle") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet:Search snippet details.

func (GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1DeployFlowMetadataadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1DeployFlowMetadata struct {// TestErrors: Errors of running deployment tests.TestErrors []*GoogleCloudDialogflowCxV3beta1TestError `json:"testErrors,omitempty"`// ForceSendFields is a list of field names (e.g. "TestErrors") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TestErrors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DeployFlowMetadata: Metadata returned for theEnvironments.DeployFlow long running operation.

func (GoogleCloudDialogflowCxV3beta1DeployFlowMetadata)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1DeployFlowRequestadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1DeployFlowRequest struct {// FlowVersion: Required. The flow version to deploy. Format:// `projects//locations//agents//flows//versions/`.FlowVersionstring `json:"flowVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "FlowVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowVersion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DeployFlowRequest: The request message forEnvironments.DeployFlow.

func (GoogleCloudDialogflowCxV3beta1DeployFlowRequest)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1DeployFlowResponseadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1DeployFlowResponse struct {// Deployment: The name of the flow version deployment. Format:// `projects//locations//agents//environments//deployments/`.Deploymentstring `json:"deployment,omitempty"`// Environment: The updated environment where the flow is deployed.Environment *GoogleCloudDialogflowCxV3beta1Environment `json:"environment,omitempty"`// ForceSendFields is a list of field names (e.g. "Deployment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Deployment") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DeployFlowResponse: The response message forEnvironments.DeployFlow.

func (GoogleCloudDialogflowCxV3beta1DeployFlowResponse)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1Deploymentadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1Deployment struct {// EndTime: End time of this deployment.EndTimestring `json:"endTime,omitempty"`// FlowVersion: The name of the flow version for this deployment. Format:// projects//locations//agents//flows//versions/.FlowVersionstring `json:"flowVersion,omitempty"`// Name: The name of the deployment. Format:// projects//locations//agents//environments//deployments/.Namestring `json:"name,omitempty"`// Result: Result of the deployment.Result *GoogleCloudDialogflowCxV3beta1DeploymentResult `json:"result,omitempty"`// StartTime: Start time of this deployment.StartTimestring `json:"startTime,omitempty"`// State: The current state of the deployment.//// Possible values://   "STATE_UNSPECIFIED" - State unspecified.//   "RUNNING" - The deployment is running.//   "SUCCEEDED" - The deployment succeeded.//   "FAILED" - The deployment failed.Statestring `json:"state,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EndTime") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Deployment: Represents a deployment in anenvironment. A deployment happens when a flow version configured to beactive in the environment. You can configure running pre-deployment steps,e.g. running validation test cases, experiment auto-rollout, etc.

func (GoogleCloudDialogflowCxV3beta1Deployment)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1DeploymentResultadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1DeploymentResult struct {// DeploymentTestResults: Results of test cases running before the deployment.// Format: `projects//locations//agents//testCases//results/`.DeploymentTestResults []string `json:"deploymentTestResults,omitempty"`// Experiment: The name of the experiment triggered by this deployment. Format:// projects//locations//agents//environments//experiments/.Experimentstring `json:"experiment,omitempty"`// ForceSendFields is a list of field names (e.g. "DeploymentTestResults") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DeploymentTestResults") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DeploymentResult: Result of the deployment.

func (GoogleCloudDialogflowCxV3beta1DeploymentResult)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1DetectIntentRequest

type GoogleCloudDialogflowCxV3beta1DetectIntentRequest struct {// OutputAudioConfig: Instructs the speech synthesizer how to generate the// output audio.OutputAudioConfig *GoogleCloudDialogflowCxV3beta1OutputAudioConfig `json:"outputAudioConfig,omitempty"`// QueryInput: Required. The input specification.QueryInput *GoogleCloudDialogflowCxV3beta1QueryInput `json:"queryInput,omitempty"`// QueryParams: The parameters of this query.QueryParams *GoogleCloudDialogflowCxV3beta1QueryParameters `json:"queryParams,omitempty"`// Session: Required. The name of the session this query is sent to. Format:// `projects//locations//agents//sessions/` or// `projects//locations//agents//environments//sessions/`. If `Environment ID`// is not specified, we assume default 'draft' environment. It's up to the API// caller to choose an appropriate `Session ID`. It can be a random number or// some type of session identifiers (preferably hashed). The length of the// `Session ID` must not exceed 36 characters. For more information, see the// sessions guide// (https://cloud.google.com/dialogflow/cx/docs/concept/session). Note: Always// use agent versions for production traffic. See Versions and environments// (https://cloud.google.com/dialogflow/cx/docs/concept/version).Sessionstring `json:"session,omitempty"`// ForceSendFields is a list of field names (e.g. "OutputAudioConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OutputAudioConfig") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DetectIntentRequest: The request to detectuser's intent.

func (GoogleCloudDialogflowCxV3beta1DetectIntentRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1DetectIntentResponse

type GoogleCloudDialogflowCxV3beta1DetectIntentResponse struct {// AllowCancellation: Indicates whether the partial response can be cancelled// when a later response arrives. e.g. if the agent specified some music as// partial response, it can be cancelled.AllowCancellationbool `json:"allowCancellation,omitempty"`// OutputAudio: The audio data bytes encoded as specified in the request. Note:// The output audio is generated based on the values of default platform text// responses found in the `query_result.response_messages` field. If multiple// default text responses exist, they will be concatenated when generating// audio. If no default platform text responses exist, the generated audio// content will be empty. In some scenarios, multiple output audio fields may// be present in the response structure. In these cases, only the// top-most-level audio output has content.OutputAudiostring `json:"outputAudio,omitempty"`// OutputAudioConfig: The config used by the speech synthesizer to generate the// output audio.OutputAudioConfig *GoogleCloudDialogflowCxV3beta1OutputAudioConfig `json:"outputAudioConfig,omitempty"`// QueryResult: The result of the conversational query.QueryResult *GoogleCloudDialogflowCxV3beta1QueryResult `json:"queryResult,omitempty"`// ResponseId: Output only. The unique identifier of the response. It can be// used to locate a response in the training example set or for reporting// issues.ResponseIdstring `json:"responseId,omitempty"`// ResponseType: Response type.//// Possible values://   "RESPONSE_TYPE_UNSPECIFIED" - Not specified. This should never happen.//   "PARTIAL" - Partial response. e.g. Aggregated responses in a Fulfillment// that enables `return_partial_response` can be returned as partial response.// WARNING: partial response is not eligible for barge-in.//   "FINAL" - Final response.ResponseTypestring `json:"responseType,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AllowCancellation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowCancellation") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DetectIntentResponse: The message returnedfrom the DetectIntent method.

func (GoogleCloudDialogflowCxV3beta1DetectIntentResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1DtmfInputadded inv0.34.0

type GoogleCloudDialogflowCxV3beta1DtmfInput struct {// Digits: The dtmf digits.Digitsstring `json:"digits,omitempty"`// FinishDigit: The finish digit (if any).FinishDigitstring `json:"finishDigit,omitempty"`// ForceSendFields is a list of field names (e.g. "Digits") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Digits") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1DtmfInput: Represents the input for dtmfevent.

func (GoogleCloudDialogflowCxV3beta1DtmfInput)MarshalJSONadded inv0.34.0

typeGoogleCloudDialogflowCxV3beta1EntityType

type GoogleCloudDialogflowCxV3beta1EntityType struct {// AutoExpansionMode: Indicates whether the entity type can be automatically// expanded.//// Possible values://   "AUTO_EXPANSION_MODE_UNSPECIFIED" - Auto expansion disabled for the// entity.//   "AUTO_EXPANSION_MODE_DEFAULT" - Allows an agent to recognize values that// have not been explicitly listed in the entity.AutoExpansionModestring `json:"autoExpansionMode,omitempty"`// DisplayName: Required. The human-readable name of the entity type, unique// within the agent.DisplayNamestring `json:"displayName,omitempty"`// EnableFuzzyExtraction: Enables fuzzy entity extraction during// classification.EnableFuzzyExtractionbool `json:"enableFuzzyExtraction,omitempty"`// Entities: The collection of entity entries associated with the entity type.Entities []*GoogleCloudDialogflowCxV3beta1EntityTypeEntity `json:"entities,omitempty"`// ExcludedPhrases: Collection of exceptional words and phrases that shouldn't// be matched. For example, if you have a size entity type with entry// `giant`(an adjective), you might consider adding `giants`(a noun) as an// exclusion. If the kind of entity type is `KIND_MAP`, then the phrases// specified by entities and excluded phrases should be mutually exclusive.ExcludedPhrases []*GoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhrase `json:"excludedPhrases,omitempty"`// Kind: Required. Indicates the kind of entity type.//// Possible values://   "KIND_UNSPECIFIED" - Not specified. This value should be never used.//   "KIND_MAP" - Map entity types allow mapping of a group of synonyms to a// canonical value.//   "KIND_LIST" - List entity types contain a set of entries that do not map// to canonical values. However, list entity types can contain references to// other entity types (with or without aliases).//   "KIND_REGEXP" - Regexp entity types allow to specify regular expressions// in entries values.Kindstring `json:"kind,omitempty"`// Name: The unique identifier of the entity type. Required for// EntityTypes.UpdateEntityType. Format:// `projects//locations//agents//entityTypes/`.Namestring `json:"name,omitempty"`// Redact: Indicates whether parameters of the entity type should be redacted// in log. If redaction is enabled, page parameters and intent parameters// referring to the entity type will be replaced by parameter name during// logging.Redactbool `json:"redact,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AutoExpansionMode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AutoExpansionMode") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EntityType: Entities are extracted from userinput and represent parameters that are meaningful to your application. Forexample, a date range, a proper name such as a geographic location orlandmark, and so on. Entities represent actionable data for yourapplication. When you define an entity, you can also include synonyms thatall map to that entity. For example, "soft drink", "soda", "pop", and so on.There are three types of entities: * **System** - entities that are definedby the Dialogflow API for common data types such as date, time, currency,and so on. A system entity is represented by the `EntityType` type. ***Custom** - entities that are defined by you that represent actionable datathat is meaningful to your application. For example, you could define a`pizza.sauce` entity for red or white pizza sauce, a `pizza.cheese` entityfor the different types of cheese on a pizza, a `pizza.topping` entity fordifferent toppings, and so on. A custom entity is represented by the`EntityType` type. * **User** - entities that are built for an individualuser such as favorites, preferences, playlists, and so on. A user entity isrepresented by the SessionEntityType type. For more information about entitytypes, see the Dialogflow documentation(https://cloud.google.com/dialogflow/docs/entities-overview).

func (GoogleCloudDialogflowCxV3beta1EntityType)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1EntityTypeEntity

type GoogleCloudDialogflowCxV3beta1EntityTypeEntity struct {// Synonyms: Required. A collection of value synonyms. For example, if the// entity type is *vegetable*, and `value` is *scallions*, a synonym could be// *green onions*. For `KIND_LIST` entity types: * This collection must contain// exactly one synonym equal to `value`.Synonyms []string `json:"synonyms,omitempty"`// Value: Required. The primary value associated with this entity entry. For// example, if the entity type is *vegetable*, the value could be *scallions*.// For `KIND_MAP` entity types: * A canonical value to be used in place of// synonyms. For `KIND_LIST` entity types: * A string that can contain// references to other entity types (with or without aliases).Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Synonyms") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Synonyms") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EntityTypeEntity: An **entity entry** for anassociated entity type.

func (GoogleCloudDialogflowCxV3beta1EntityTypeEntity)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhrase

type GoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhrase struct {// Value: Required. The word or phrase to be excluded.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Value") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Value") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhrase: An excluded entityphrase that should not be matched.

func (GoogleCloudDialogflowCxV3beta1EntityTypeExcludedPhrase)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Environment

type GoogleCloudDialogflowCxV3beta1Environment struct {// Description: The human-readable description of the environment. The maximum// length is 500 characters. If exceeded, the request is rejected.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the environment (unique in// an agent). Limit of 64 characters.DisplayNamestring `json:"displayName,omitempty"`// Name: The name of the environment. Format:// `projects//locations//agents//environments/`.Namestring `json:"name,omitempty"`// TestCasesConfig: The test cases config for continuous tests of this// environment.TestCasesConfig *GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig `json:"testCasesConfig,omitempty"`// UpdateTime: Output only. Update time of this environment.UpdateTimestring `json:"updateTime,omitempty"`// VersionConfigs: A list of configurations for flow versions. You should// include version configs for all flows that are reachable from `Start Flow`// in the agent. Otherwise, an error will be returned.VersionConfigs []*GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig `json:"versionConfigs,omitempty"`// WebhookConfig: The webhook configuration for this environment.WebhookConfig *GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig `json:"webhookConfig,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Environment: Represents an environment for anagent. You can create multiple versions of your agent and publish them toseparate environments. When you edit an agent, you are editing the draftagent. At any point, you can save the draft agent as an agent version, whichis an immutable snapshot of your agent. When you save the draft agent, it ispublished to the default environment. When you create agent versions, youcan publish them to custom environments. You can create a variety of customenvironments for testing, development, production, etc.

func (GoogleCloudDialogflowCxV3beta1Environment)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfigadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig struct {// EnableContinuousRun: Whether to run test cases in TestCasesConfig.test_cases// periodically. Default false. If set to true, run once a day.EnableContinuousRunbool `json:"enableContinuousRun,omitempty"`// EnablePredeploymentRun: Whether to run test cases in// TestCasesConfig.test_cases before deploying a flow version to the// environment. Default false.EnablePredeploymentRunbool `json:"enablePredeploymentRun,omitempty"`// TestCases: A list of test case names to run. They should be under the same// agent. Format of each test case name:// `projects//locations//agents//testCases/`TestCases []string `json:"testCases,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableContinuousRun") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableContinuousRun") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig: The configurationfor continuous tests.

func (GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig

type GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig struct {// Version: Required. Flow, playbook and tool versions are supported. Format// for flow version: projects//locations//agents//flows//versions/. Format for// playbook version: projects//locations//agents//playbooks//versions/. Format// for tool version: projects//locations//agents//tools//versions/.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Version") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Version") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig: Configuration forthe version.

func (GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfigadded inv0.82.0

type GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig struct {// WebhookOverrides: The list of webhooks to override for the agent// environment. The webhook must exist in the agent. You can override fields in// `generic_web_service` and `service_directory`.WebhookOverrides []*GoogleCloudDialogflowCxV3beta1Webhook `json:"webhookOverrides,omitempty"`// ForceSendFields is a list of field names (e.g. "WebhookOverrides") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "WebhookOverrides") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig: Configuration forwebhooks.

func (GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig)MarshalJSONadded inv0.82.0

typeGoogleCloudDialogflowCxV3beta1Eventadded inv0.227.0

type GoogleCloudDialogflowCxV3beta1Event struct {// Event: Required. Name of the event.Eventstring `json:"event,omitempty"`// Text: Optional. Unstructured text payload of the event.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Event") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Event") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Event: Event represents the event sent by thecustomer.

func (GoogleCloudDialogflowCxV3beta1Event)MarshalJSONadded inv0.227.0

typeGoogleCloudDialogflowCxV3beta1EventHandler

type GoogleCloudDialogflowCxV3beta1EventHandler struct {// Event: Required. The name of the event to handle.Eventstring `json:"event,omitempty"`// Name: Output only. The unique identifier of this event handler.Namestring `json:"name,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TargetPlaybook: The target playbook to transition to. Format:// `projects//locations//agents//playbooks/`.TargetPlaybookstring `json:"targetPlaybook,omitempty"`// TriggerFulfillment: The fulfillment to call when the event occurs. Handling// webhook errors with a fulfillment enabled with webhook could cause infinite// loop. It is invalid to specify such fulfillment for a handler handling// webhooks.TriggerFulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "Event") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Event") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EventHandler: An event handler specifies anevent that can be handled during a session. When the specified eventhappens, the following actions are taken in order: * If there is a`trigger_fulfillment` associated with the event, it will be called. * Ifthere is a `target_page` associated with the event, the session willtransition into the specified page. * If there is a `target_flow` associatedwith the event, the session will transition into the specified flow.

func (GoogleCloudDialogflowCxV3beta1EventHandler)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1EventInputadded inv0.33.0

type GoogleCloudDialogflowCxV3beta1EventInput struct {// Event: Name of the event.Eventstring `json:"event,omitempty"`// ForceSendFields is a list of field names (e.g. "Event") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Event") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1EventInput: Represents the event to trigger.

func (GoogleCloudDialogflowCxV3beta1EventInput)MarshalJSONadded inv0.33.0

typeGoogleCloudDialogflowCxV3beta1Exampleadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1Example struct {// Actions: Required. The ordered list of actions performed by the end user and// the Dialogflow agent.Actions []*GoogleCloudDialogflowCxV3beta1Action `json:"actions,omitempty"`// ConversationState: Required. Example's output state.//// Possible values://   "OUTPUT_STATE_UNSPECIFIED" - Unspecified output.//   "OUTPUT_STATE_OK" - Succeeded.//   "OUTPUT_STATE_CANCELLED" - Cancelled.//   "OUTPUT_STATE_FAILED" - Failed.//   "OUTPUT_STATE_ESCALATED" - Escalated.//   "OUTPUT_STATE_PENDING" - Pending.ConversationStatestring `json:"conversationState,omitempty"`// CreateTime: Output only. The timestamp of initial example creation.CreateTimestring `json:"createTime,omitempty"`// Description: Optional. The high level concise description of the example.// The max number of characters is 200.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The display name of the example.DisplayNamestring `json:"displayName,omitempty"`// LanguageCode: Optional. The language code of the example. If not specified,// the agent's default language is used. Note: languages must be enabled in the// agent before they can be used. Note: example's language code is not// currently used in dialogflow agents.LanguageCodestring `json:"languageCode,omitempty"`// Name: The unique identifier of the playbook example. Format:// `projects//locations//agents//playbooks//examples/`.Namestring `json:"name,omitempty"`// PlaybookInput: Optional. The input to the playbook in the example.PlaybookInput *GoogleCloudDialogflowCxV3beta1PlaybookInput `json:"playbookInput,omitempty"`// PlaybookOutput: Optional. The output of the playbook in the example.PlaybookOutput *GoogleCloudDialogflowCxV3beta1PlaybookOutput `json:"playbookOutput,omitempty"`// TokenCount: Output only. Estimated number of tokes current example takes// when sent to the LLM.TokenCountint64 `json:"tokenCount,omitempty,string"`// UpdateTime: Output only. Last time the example was updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Actions") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Actions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Example: Example represents a sample executionof the playbook in the conversation. An example consists of a list ofordered actions performed by end user or Dialogflow agent according theplaybook instructions to fulfill the task.

func (GoogleCloudDialogflowCxV3beta1Example)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ExceptionDetailadded inv0.231.0

type GoogleCloudDialogflowCxV3beta1ExceptionDetail struct {// ErrorMessage: Optional. The error message.ErrorMessagestring `json:"errorMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ErrorMessage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ErrorMessage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExceptionDetail: Exception thrown during theexecution of an action.

func (GoogleCloudDialogflowCxV3beta1ExceptionDetail)MarshalJSONadded inv0.231.0

typeGoogleCloudDialogflowCxV3beta1Experimentadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1Experiment struct {// CreateTime: Creation time of this experiment.CreateTimestring `json:"createTime,omitempty"`// Definition: The definition of the experiment.Definition *GoogleCloudDialogflowCxV3beta1ExperimentDefinition `json:"definition,omitempty"`// Description: The human-readable description of the experiment.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the experiment (unique in// an environment). Limit of 64 characters.DisplayNamestring `json:"displayName,omitempty"`// EndTime: End time of this experiment.EndTimestring `json:"endTime,omitempty"`// ExperimentLength: Maximum number of days to run the experiment. If// auto-rollout is not enabled, default value and maximum will be 30 days. If// auto-rollout is enabled, default value and maximum will be 6 days.ExperimentLengthstring `json:"experimentLength,omitempty"`// LastUpdateTime: Last update time of this experiment.LastUpdateTimestring `json:"lastUpdateTime,omitempty"`// Name: The name of the experiment. Format:// projects//locations//agents//environments//experiments/.Namestring `json:"name,omitempty"`// Result: Inference result of the experiment.Result *GoogleCloudDialogflowCxV3beta1ExperimentResult `json:"result,omitempty"`// RolloutConfig: The configuration for auto rollout. If set, there should be// exactly two variants in the experiment (control variant being the default// version of the flow), the traffic allocation for the non-control variant// will gradually increase to 100% when conditions are met, and eventually// replace the control variant to become the default version of the flow.RolloutConfig *GoogleCloudDialogflowCxV3beta1RolloutConfig `json:"rolloutConfig,omitempty"`// RolloutFailureReason: The reason why rollout has failed. Should only be set// when state is ROLLOUT_FAILED.RolloutFailureReasonstring `json:"rolloutFailureReason,omitempty"`// RolloutState: State of the auto rollout process.RolloutState *GoogleCloudDialogflowCxV3beta1RolloutState `json:"rolloutState,omitempty"`// StartTime: Start time of this experiment.StartTimestring `json:"startTime,omitempty"`// State: The current state of the experiment. Transition triggered by// Experiments.StartExperiment: DRAFT->RUNNING. Transition triggered by// Experiments.CancelExperiment: DRAFT->DONE or RUNNING->DONE.//// Possible values://   "STATE_UNSPECIFIED" - State unspecified.//   "DRAFT" - The experiment is created but not started yet.//   "RUNNING" - The experiment is running.//   "DONE" - The experiment is done.//   "ROLLOUT_FAILED" - The experiment with auto-rollout enabled has failed.Statestring `json:"state,omitempty"`// VariantsHistory: The history of updates to the experiment variants.VariantsHistory []*GoogleCloudDialogflowCxV3beta1VariantsHistory `json:"variantsHistory,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Experiment: Represents an experiment in anenvironment.

func (GoogleCloudDialogflowCxV3beta1Experiment)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExperimentDefinitionadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ExperimentDefinition struct {// Condition: The condition defines which subset of sessions are selected for// this experiment. If not specified, all sessions are eligible. E.g.// "query_input.language_code=en" See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition).Conditionstring `json:"condition,omitempty"`// VersionVariants: The flow versions as the variants of this experiment.VersionVariants *GoogleCloudDialogflowCxV3beta1VersionVariants `json:"versionVariants,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExperimentDefinition: Definition of theexperiment.

func (GoogleCloudDialogflowCxV3beta1ExperimentDefinition)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExperimentResultadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ExperimentResult struct {// LastUpdateTime: The last time the experiment's stats data was updated. Will// have default value if stats have never been computed for this experiment.LastUpdateTimestring `json:"lastUpdateTime,omitempty"`// VersionMetrics: Version variants and metrics.VersionMetrics []*GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics `json:"versionMetrics,omitempty"`// ForceSendFields is a list of field names (e.g. "LastUpdateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LastUpdateTime") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExperimentResult: The inference result whichincludes an objective metric to optimize and the confidence interval.

func (GoogleCloudDialogflowCxV3beta1ExperimentResult)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceIntervaladded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval struct {// ConfidenceLevel: The confidence level used to construct the interval, i.e.// there is X% chance that the true value is within this interval.ConfidenceLevelfloat64 `json:"confidenceLevel,omitempty"`// LowerBound: Lower bound of the interval.LowerBoundfloat64 `json:"lowerBound,omitempty"`// Ratio: The percent change between an experiment metric's value and the value// for its control.Ratiofloat64 `json:"ratio,omitempty"`// UpperBound: Upper bound of the interval.UpperBoundfloat64 `json:"upperBound,omitempty"`// ForceSendFields is a list of field names (e.g. "ConfidenceLevel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConfidenceLevel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval: Aconfidence interval is a range of possible values for the experimentobjective you are trying to measure.

func (GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval)MarshalJSONadded inv0.39.0

func (*GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval)UnmarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExperimentResultMetricadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ExperimentResultMetric struct {// ConfidenceInterval: The probability that the treatment is better than all// other treatments in the experimentConfidenceInterval *GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval `json:"confidenceInterval,omitempty"`// Count: Count value of a metric.Countfloat64 `json:"count,omitempty"`// CountType: Count-based metric type. Only one of type or count_type is// specified in each Metric.//// Possible values://   "COUNT_TYPE_UNSPECIFIED" - Count type unspecified.//   "TOTAL_NO_MATCH_COUNT" - Total number of occurrences of a 'NO_MATCH'.//   "TOTAL_TURN_COUNT" - Total number of turn counts.//   "AVERAGE_TURN_COUNT" - Average turn count in a session.CountTypestring `json:"countType,omitempty"`// Ratio: Ratio value of a metric.Ratiofloat64 `json:"ratio,omitempty"`// Type: Ratio-based metric type. Only one of type or count_type is specified// in each Metric.//// Possible values://   "METRIC_UNSPECIFIED" - Metric unspecified.//   "CONTAINED_SESSION_NO_CALLBACK_RATE" - Percentage of contained sessions// without user calling back in 24 hours.//   "LIVE_AGENT_HANDOFF_RATE" - Percentage of sessions that were handed to a// human agent.//   "CALLBACK_SESSION_RATE" - Percentage of sessions with the same user// calling back.//   "ABANDONED_SESSION_RATE" - Percentage of sessions where user hung up.//   "SESSION_END_RATE" - Percentage of sessions reached Dialogflow 'END_PAGE'// or 'END_SESSION'.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "ConfidenceInterval") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConfidenceInterval") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExperimentResultMetric: Metric andcorresponding confidence intervals.

func (GoogleCloudDialogflowCxV3beta1ExperimentResultMetric)MarshalJSONadded inv0.39.0

func (*GoogleCloudDialogflowCxV3beta1ExperimentResultMetric)UnmarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetricsadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics struct {// Metrics: The metrics and corresponding confidence intervals in the inference// result.Metrics []*GoogleCloudDialogflowCxV3beta1ExperimentResultMetric `json:"metrics,omitempty"`// SessionCount: Number of sessions that were allocated to this version.SessionCountint64 `json:"sessionCount,omitempty"`// Version: The name of the flow Version. Format:// `projects//locations//agents//flows//versions/`.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Metrics") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metrics") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics: Versionvariant and associated metrics.

func (GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ExportAgentRequest

type GoogleCloudDialogflowCxV3beta1ExportAgentRequest struct {// AgentUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the agent to. The// format of this URI must be `gs:///`. If left unspecified, the serialized// agent is returned inline. Dialogflow performs a write operation for the// Cloud Storage object on the caller's behalf, so your request authentication// must have write permissions for the object. For more information, see// Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).AgentUristring `json:"agentUri,omitempty"`// DataFormat: Optional. The data format of the exported agent. If not// specified, `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format.//   "BLOB" - Agent content will be exported as raw bytes.//   "JSON_PACKAGE" - Agent content will be exported in JSON Package format.DataFormatstring `json:"dataFormat,omitempty"`// Environment: Optional. Environment name. If not set, draft environment is// assumed. Format: `projects//locations//agents//environments/`.Environmentstring `json:"environment,omitempty"`// GitDestination: Optional. The Git branch to export the agent to.GitDestination *GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination `json:"gitDestination,omitempty"`// IncludeBigqueryExportSettings: Optional. Whether to include BigQuery Export// setting.IncludeBigqueryExportSettingsbool `json:"includeBigqueryExportSettings,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentUri") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentUri") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportAgentRequest: The request message forAgents.ExportAgent.

func (GoogleCloudDialogflowCxV3beta1ExportAgentRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestinationadded inv0.131.0

type GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination struct {// CommitMessage: Commit message for the git push.CommitMessagestring `json:"commitMessage,omitempty"`// TrackingBranch: Tracking branch for the git push.TrackingBranchstring `json:"trackingBranch,omitempty"`// ForceSendFields is a list of field names (e.g. "CommitMessage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CommitMessage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination: Settings forexporting to a git branch.

func (GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination)MarshalJSONadded inv0.131.0

typeGoogleCloudDialogflowCxV3beta1ExportAgentResponse

type GoogleCloudDialogflowCxV3beta1ExportAgentResponse struct {// AgentContent: Uncompressed raw byte content for agent. This field is// populated if none of `agent_uri` and `git_destination` are specified in// ExportAgentRequest.AgentContentstring `json:"agentContent,omitempty"`// AgentUri: The URI to a file containing the exported agent. This field is// populated if `agent_uri` is specified in ExportAgentRequest.AgentUristring `json:"agentUri,omitempty"`// CommitSha: Commit SHA of the git push. This field is populated if// `git_destination` is specified in ExportAgentRequest.CommitShastring `json:"commitSha,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportAgentResponse: The response message forAgents.ExportAgent.

func (GoogleCloudDialogflowCxV3beta1ExportAgentResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadataadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata struct {}

GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata: Metadata returnedfor the EntityTypes.ExportEntityTypes long running operation.

typeGoogleCloudDialogflowCxV3beta1ExportEntityTypesRequestadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ExportEntityTypesRequest struct {// DataFormat: Optional. The data format of the exported entity types. If not// specified, `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format. Treated as `BLOB`.//   "BLOB" - EntityTypes will be exported as raw bytes.//   "JSON_PACKAGE" - EntityTypes will be exported in JSON Package format.DataFormatstring `json:"dataFormat,omitempty"`// EntityTypes: Required. The name of the entity types to export. Format:// `projects//locations//agents//entityTypes/`.EntityTypes []string `json:"entityTypes,omitempty"`// EntityTypesContentInline: Optional. The option to return the serialized// entity types inline.EntityTypesContentInlinebool `json:"entityTypesContentInline,omitempty"`// EntityTypesUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the entity types to.// The format of this URI must be `gs:///`. Dialogflow performs a write// operation for the Cloud Storage object on the caller's behalf, so your// request authentication must have write permissions for the object. For more// information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).EntityTypesUristring `json:"entityTypesUri,omitempty"`// LanguageCode: Optional. The language to retrieve the entity type for. The// following fields are language dependent: * `EntityType.entities.value` *// `EntityType.entities.synonyms` * `EntityType.excluded_phrases.value` If not// specified, all language dependent fields will be retrieved. Many languages// (https://cloud.google.com/dialogflow/docs/reference/language) are supported.// Note: languages must be enabled in the agent before they can be used.LanguageCodestring `json:"languageCode,omitempty"`// ForceSendFields is a list of field names (e.g. "DataFormat") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataFormat") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportEntityTypesRequest: The request messagefor EntityTypes.ExportEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ExportEntityTypesRequest)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3beta1ExportEntityTypesResponseadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse struct {// EntityTypesContent: Uncompressed byte content for entity types. This field// is populated only if `entity_types_content_inline` is set to true in// ExportEntityTypesRequest.EntityTypesContent *GoogleCloudDialogflowCxV3beta1InlineDestination `json:"entityTypesContent,omitempty"`// EntityTypesUri: The URI to a file containing the exported entity types. This// field is populated only if `entity_types_uri` is specified in// ExportEntityTypesRequest.EntityTypesUristring `json:"entityTypesUri,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityTypesContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypesContent") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse: The responsemessage for EntityTypes.ExportEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3beta1ExportFlowRequestadded inv0.46.0

type GoogleCloudDialogflowCxV3beta1ExportFlowRequest struct {// FlowUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the flow to. The// format of this URI must be `gs:///`. If left unspecified, the serialized// flow is returned inline. Dialogflow performs a write operation for the Cloud// Storage object on the caller's behalf, so your request authentication must// have write permissions for the object. For more information, see Dialogflow// access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).FlowUristring `json:"flowUri,omitempty"`// IncludeReferencedFlows: Optional. Whether to export flows referenced by the// specified flow.IncludeReferencedFlowsbool `json:"includeReferencedFlows,omitempty"`// ForceSendFields is a list of field names (e.g. "FlowUri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowUri") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportFlowRequest: The request message forFlows.ExportFlow.

func (GoogleCloudDialogflowCxV3beta1ExportFlowRequest)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3beta1ExportFlowResponseadded inv0.46.0

type GoogleCloudDialogflowCxV3beta1ExportFlowResponse struct {// FlowContent: Uncompressed raw byte content for flow.FlowContentstring `json:"flowContent,omitempty"`// FlowUri: The URI to a file containing the exported flow. This field is// populated only if `flow_uri` is specified in ExportFlowRequest.FlowUristring `json:"flowUri,omitempty"`// ForceSendFields is a list of field names (e.g. "FlowContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportFlowResponse: The response message forFlows.ExportFlow.

func (GoogleCloudDialogflowCxV3beta1ExportFlowResponse)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3beta1ExportIntentsMetadataadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata struct {}

GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata: Metadata returned forthe Intents.ExportIntents long running operation.

typeGoogleCloudDialogflowCxV3beta1ExportIntentsRequestadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ExportIntentsRequest struct {// DataFormat: Optional. The data format of the exported intents. If not// specified, `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format. Treated as `BLOB`.//   "BLOB" - Intents will be exported as raw bytes.//   "JSON" - Intents will be exported in JSON format.//   "CSV" - Intents will be exported in CSV format.DataFormatstring `json:"dataFormat,omitempty"`// Intents: Required. The name of the intents to export. Format:// `projects//locations//agents//intents/`.Intents []string `json:"intents,omitempty"`// IntentsContentInline: Optional. The option to return the serialized intents// inline.IntentsContentInlinebool `json:"intentsContentInline,omitempty"`// IntentsUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the intents to. The// format of this URI must be `gs:///`. Dialogflow performs a write operation// for the Cloud Storage object on the caller's behalf, so your request// authentication must have write permissions for the object. For more// information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).IntentsUristring `json:"intentsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "DataFormat") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataFormat") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportIntentsRequest: The request message forIntents.ExportIntents.

func (GoogleCloudDialogflowCxV3beta1ExportIntentsRequest)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1ExportIntentsResponseadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ExportIntentsResponse struct {// IntentsContent: Uncompressed byte content for intents. This field is// populated only if `intents_content_inline` is set to true in// ExportIntentsRequest.IntentsContent *GoogleCloudDialogflowCxV3beta1InlineDestination `json:"intentsContent,omitempty"`// IntentsUri: The URI to a file containing the exported intents. This field is// populated only if `intents_uri` is specified in ExportIntentsRequest.IntentsUristring `json:"intentsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "IntentsContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IntentsContent") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportIntentsResponse: The response messagefor Intents.ExportIntents.

func (GoogleCloudDialogflowCxV3beta1ExportIntentsResponse)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1ExportPlaybookRequestadded inv0.212.0

type GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest struct {// DataFormat: Optional. The data format of the exported agent. If not// specified, `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format.//   "BLOB" - Flow content will be exported as raw bytes.//   "JSON" - Flow content will be exported in JSON format.DataFormatstring `json:"dataFormat,omitempty"`// PlaybookUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the playbook to. The// format of this URI must be `gs:///`. If left unspecified, the serialized// playbook is returned inline. Dialogflow performs a write operation for the// Cloud Storage object on the caller's behalf, so your request authentication// must have write permissions for the object. For more information, see// Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).PlaybookUristring `json:"playbookUri,omitempty"`// ForceSendFields is a list of field names (e.g. "DataFormat") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataFormat") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest: The request message forPlaybooks.ExportPlaybook.

func (GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest)MarshalJSONadded inv0.212.0

typeGoogleCloudDialogflowCxV3beta1ExportTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata struct {}

GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata: Metadata returned forthe TestCases.ExportTestCases long running operation. This message currentlyhas no fields.

typeGoogleCloudDialogflowCxV3beta1ExportTestCasesRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest struct {// DataFormat: The data format of the exported test cases. If not specified,// `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format.//   "BLOB" - Raw bytes.//   "JSON" - JSON format.DataFormatstring `json:"dataFormat,omitempty"`// Filter: The filter expression used to filter exported test cases, see API// Filtering (https://aip.dev/160). The expression is case insensitive and// supports the following syntax: name = [OR name = ] ... For example: * "name// = t1 OR name = t2" matches the test case with the exact resource name "t1"// or "t2".Filterstring `json:"filter,omitempty"`// GcsUri: The Google Cloud Storage (https://cloud.google.com/storage/docs/)// URI to export the test cases to. The format of this URI must be `gs:///`. If// unspecified, the serialized test cases is returned inline. Dialogflow// performs a write operation for the Cloud Storage object on the caller's// behalf, so your request authentication must have write permissions for the// object. For more information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).GcsUristring `json:"gcsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "DataFormat") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataFormat") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest: The request messagefor TestCases.ExportTestCases.

func (GoogleCloudDialogflowCxV3beta1ExportTestCasesRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ExportTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ExportTestCasesResponse struct {// Content: Uncompressed raw byte content for test cases.Contentstring `json:"content,omitempty"`// GcsUri: The URI to a file containing the exported test cases. This field is// populated only if `gcs_uri` is specified in ExportTestCasesRequest.GcsUristring `json:"gcsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportTestCasesResponse: The response messagefor TestCases.ExportTestCases.

func (GoogleCloudDialogflowCxV3beta1ExportTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ExportToolsRequestadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ExportToolsRequest struct {// DataFormat: Optional. The data format of the exported tools. If not// specified, `BLOB` is assumed.//// Possible values://   "DATA_FORMAT_UNSPECIFIED" - Unspecified format. Treated as `BLOB`.//   "BLOB" - Tools will be exported as raw bytes.DataFormatstring `json:"dataFormat,omitempty"`// Tools: Required. The name of the tools to export. Format:// `projects//locations//agents//tools/`.Tools []string `json:"tools,omitempty"`// ToolsContentInline: Optional. The option to return the serialized tools// inline.ToolsContentInlinebool `json:"toolsContentInline,omitempty"`// ToolsUri: Optional. The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to export the tools to. The// format of this URI must be `gs:///`. Dialogflow performs a write operation// for the Cloud Storage object on the caller's behalf, so your request// authentication must have write permissions for the object. For more// information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).ToolsUristring `json:"toolsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "DataFormat") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataFormat") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ExportToolsRequest: The request message forTools.ExportTools.

func (GoogleCloudDialogflowCxV3beta1ExportToolsRequest)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1FilterSpecsadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1FilterSpecs struct {// DataStores: Optional. Data Stores where the boosting configuration is// applied. The full names of the referenced data stores. Formats:// `projects/{project}/locations/{location}/collections/{collection}/dataStores/// {data_store}`// `projects/{project}/locations/{location}/dataStores/{data_store}DataStores []string `json:"dataStores,omitempty"`// Filter: Optional. The filter expression to be applied. Expression syntax is// documented at//https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata#filter-expression-syntaxFilterstring `json:"filter,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStores") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStores") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FilterSpecs: Filter specifications for datastores.

func (GoogleCloudDialogflowCxV3beta1FilterSpecs)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1Flow

type GoogleCloudDialogflowCxV3beta1Flow struct {// AdvancedSettings: Hierarchical advanced settings for this flow. The settings// exposed at the lower level overrides the settings exposed at the higher// level.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// Description: The description of the flow. The maximum length is 500// characters. If exceeded, the request is rejected.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the flow.DisplayNamestring `json:"displayName,omitempty"`// EventHandlers: A flow's event handlers serve two purposes: * They are// responsible for handling events (e.g. no match, webhook errors) in the flow.// * They are inherited by every page's event handlers, which can be used to// handle common events regardless of the current page. Event handlers defined// in the page have higher priority than those defined in the flow. Unlike// transition_routes, these handlers are evaluated on a first-match basis. The// first one that matches the event get executed, with the rest being ignored.EventHandlers []*GoogleCloudDialogflowCxV3beta1EventHandler `json:"eventHandlers,omitempty"`// InputParameterDefinitions: Optional. Defined structured input parameters for// this flow.InputParameterDefinitions []*GoogleCloudDialogflowCxV3beta1ParameterDefinition `json:"inputParameterDefinitions,omitempty"`// KnowledgeConnectorSettings: Optional. Knowledge connector configuration.KnowledgeConnectorSettings *GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings `json:"knowledgeConnectorSettings,omitempty"`// Locked: Indicates whether the flow is locked for changes. If the flow is// locked, modifications to the flow will be rejected.Lockedbool `json:"locked,omitempty"`// MultiLanguageSettings: Optional. Multi-lingual agent settings for this flow.MultiLanguageSettings *GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings `json:"multiLanguageSettings,omitempty"`// Name: The unique identifier of the flow. Format:// `projects//locations//agents//flows/`.Namestring `json:"name,omitempty"`// NluSettings: NLU related settings of the flow.NluSettings *GoogleCloudDialogflowCxV3beta1NluSettings `json:"nluSettings,omitempty"`// OutputParameterDefinitions: Optional. Defined structured output parameters// for this flow.OutputParameterDefinitions []*GoogleCloudDialogflowCxV3beta1ParameterDefinition `json:"outputParameterDefinitions,omitempty"`// TransitionRouteGroups: A flow's transition route group serve two purposes: *// They are responsible for matching the user's first utterances in the flow. *// They are inherited by every page's transition route groups. Transition route// groups defined in the page have higher priority than those defined in the// flow. Format:`projects//locations//agents//flows//transitionRouteGroups/` or// `projects//locations//agents//transitionRouteGroups/` for agent-level// groups.TransitionRouteGroups []string `json:"transitionRouteGroups,omitempty"`// TransitionRoutes: A flow's transition routes serve two purposes: * They are// responsible for matching the user's first utterances in the flow. * They are// inherited by every page's transition routes and can support use cases such// as the user saying "help" or "can I talk to a human?", which can be handled// in a common way regardless of the current page. Transition routes defined in// the page have higher priority than those defined in the flow.// TransitionRoutes are evaluated in the following order: * TransitionRoutes// with intent specified. * TransitionRoutes with only condition specified.// TransitionRoutes with intent specified are inherited by pages in the flow.TransitionRoutes []*GoogleCloudDialogflowCxV3beta1TransitionRoute `json:"transitionRoutes,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Flow: Flows represents the conversation flowswhen you build your chatbot agent. A flow consists of many pages connectedby the transition routes. Conversations always start with the built-in StartFlow (with an all-0 ID). Transition routes can direct the conversationsession from the current flow (parent flow) to another flow (sub flow). Whenthe sub flow is finished, Dialogflow will bring the session back to theparent flow, where the sub flow is started. Usually, when a transition routeis followed by a matched intent, the intent will be "consumed". This meansthe intent won't activate more transition routes. However, when the followedtransition route moves the conversation session into a different flow, thematched intent can be carried over and to be consumed in the target flow.

func (GoogleCloudDialogflowCxV3beta1Flow)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FlowImportStrategyadded inv0.137.0

type GoogleCloudDialogflowCxV3beta1FlowImportStrategy struct {// GlobalImportStrategy: Optional. Global flow import strategy for resource// conflict resolution. The import Import strategy for resource conflict// resolution, applied globally throughout the flow. It will be applied for all// display name conflicts in the imported content. If not specified,// 'CREATE_NEW' is assumed.//// Possible values://   "IMPORT_STRATEGY_UNSPECIFIED" - Unspecified. Treated as 'CREATE_NEW'.//   "IMPORT_STRATEGY_CREATE_NEW" - Create a new resource with a numeric suffix// appended to the end of the existing display name.//   "IMPORT_STRATEGY_REPLACE" - Replace existing resource with incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_KEEP" - Keep existing resource and discard incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_MERGE" - Combine existing and incoming resources when a// conflict is encountered.//   "IMPORT_STRATEGY_THROW_ERROR" - Throw error if a conflict is encountered.GlobalImportStrategystring `json:"globalImportStrategy,omitempty"`// ForceSendFields is a list of field names (e.g. "GlobalImportStrategy") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GlobalImportStrategy") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FlowImportStrategy: The flow import strategyused for resource conflict resolution associated with an ImportFlowRequest.

func (GoogleCloudDialogflowCxV3beta1FlowImportStrategy)MarshalJSONadded inv0.137.0

typeGoogleCloudDialogflowCxV3beta1FlowInvocationadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1FlowInvocation struct {// DisplayName: Output only. The display name of the flow.DisplayNamestring `json:"displayName,omitempty"`// Flow: Required. The unique identifier of the flow. Format:// `projects//locations//agents/`.Flowstring `json:"flow,omitempty"`// FlowState: Required. Flow invocation's output state.//// Possible values://   "OUTPUT_STATE_UNSPECIFIED" - Unspecified output.//   "OUTPUT_STATE_OK" - Succeeded.//   "OUTPUT_STATE_CANCELLED" - Cancelled.//   "OUTPUT_STATE_FAILED" - Failed.//   "OUTPUT_STATE_ESCALATED" - Escalated.//   "OUTPUT_STATE_PENDING" - Pending.FlowStatestring `json:"flowState,omitempty"`// InputActionParameters: Optional. A list of input parameters for the flow.InputActionParametersgoogleapi.RawMessage `json:"inputActionParameters,omitempty"`// OutputActionParameters: Optional. A list of output parameters generated by// the flow invocation.OutputActionParametersgoogleapi.RawMessage `json:"outputActionParameters,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FlowInvocation: Stores metadata of theinvocation of a child CX flow. Flow invocation actions enter the child flow.

func (GoogleCloudDialogflowCxV3beta1FlowInvocation)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettingsadded inv0.173.0

type GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings struct {// EnableMultiLanguageDetection: Optional. Enable multi-language detection for// this flow. This can be set only if agent level multi language setting is// enabled.EnableMultiLanguageDetectionbool `json:"enableMultiLanguageDetection,omitempty"`// SupportedResponseLanguageCodes: Optional. Agent will respond in the detected// language if the detected language code is in the supported resolved// languages for this flow. This will be used only if multi-language training// is enabled in the agent and multi-language detection is enabled in the flow.// The supported languages must be a subset of the languages supported by the// agent.SupportedResponseLanguageCodes []string `json:"supportedResponseLanguageCodes,omitempty"`// ForceSendFields is a list of field names (e.g.// "EnableMultiLanguageDetection") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableMultiLanguageDetection") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings: Settings formulti-lingual agents.

func (GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings)MarshalJSONadded inv0.173.0

typeGoogleCloudDialogflowCxV3beta1FlowTransitionadded inv0.227.0

type GoogleCloudDialogflowCxV3beta1FlowTransition struct {// DisplayName: Output only. The display name of the flow.DisplayNamestring `json:"displayName,omitempty"`// Flow: Required. The unique identifier of the flow. Format:// `projects//locations//agents/`.Flowstring `json:"flow,omitempty"`// InputActionParameters: A list of input parameters for the action.InputActionParametersgoogleapi.RawMessage `json:"inputActionParameters,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FlowTransition: Stores metadata of thetransition to a target CX flow. Flow transition actions exit the callerplaybook and enter the child flow.

func (GoogleCloudDialogflowCxV3beta1FlowTransition)MarshalJSONadded inv0.227.0

typeGoogleCloudDialogflowCxV3beta1FlowValidationResultadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1FlowValidationResult struct {// Name: The unique identifier of the flow validation result. Format:// `projects//locations//agents//flows//validationResult`.Namestring `json:"name,omitempty"`// UpdateTime: Last time the flow was validated.UpdateTimestring `json:"updateTime,omitempty"`// ValidationMessages: Contains all validation messages.ValidationMessages []*GoogleCloudDialogflowCxV3beta1ValidationMessage `json:"validationMessages,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FlowValidationResult: The response message forFlows.GetFlowValidationResult.

func (GoogleCloudDialogflowCxV3beta1FlowValidationResult)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1Form

type GoogleCloudDialogflowCxV3beta1Form struct {// Parameters: Parameters to collect from the user.Parameters []*GoogleCloudDialogflowCxV3beta1FormParameter `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameters") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Form: A form is a data model that groupsrelated parameters that can be collected from the user. The process in whichthe agent prompts the user and collects parameter values from the user iscalled form filling. A form can be added to a page. When form filling isdone, the filled parameters will be written to the session.

func (GoogleCloudDialogflowCxV3beta1Form)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FormParameter

type GoogleCloudDialogflowCxV3beta1FormParameter struct {// AdvancedSettings: Hierarchical advanced settings for this parameter. The// settings exposed at the lower level overrides the settings exposed at the// higher level.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// DefaultValue: The default value of an optional parameter. If the parameter// is required, the default value will be ignored.DefaultValue interface{} `json:"defaultValue,omitempty"`// DisplayName: Required. The human-readable name of the parameter, unique// within the form.DisplayNamestring `json:"displayName,omitempty"`// EntityType: Required. The entity type of the parameter. Format:// `projects/-/locations/-/agents/-/entityTypes/` for system entity types (for// example, `projects/-/locations/-/agents/-/entityTypes/sys.date`), or// `projects//locations//agents//entityTypes/` for developer entity types.EntityTypestring `json:"entityType,omitempty"`// FillBehavior: Required. Defines fill behavior for the parameter.FillBehavior *GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior `json:"fillBehavior,omitempty"`// IsList: Indicates whether the parameter represents a list of values.IsListbool `json:"isList,omitempty"`// Redact: Indicates whether the parameter content should be redacted in log.// If redaction is enabled, the parameter content will be replaced by parameter// name during logging. Note: the parameter content is subject to redaction if// either parameter level redaction or entity type level redaction is enabled.Redactbool `json:"redact,omitempty"`// Required: Indicates whether the parameter is required. Optional parameters// will not trigger prompts; however, they are filled if the user specifies// them. Required parameters must be filled before form filling concludes.Requiredbool `json:"required,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FormParameter: Represents a form parameter.

func (GoogleCloudDialogflowCxV3beta1FormParameter)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FormParameterFillBehavior

type GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior struct {// InitialPromptFulfillment: Required. The fulfillment to provide the initial// prompt that the agent can present to the user in order to fill the// parameter.InitialPromptFulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"initialPromptFulfillment,omitempty"`// RepromptEventHandlers: The handlers for parameter-level events, used to// provide reprompt for the parameter or transition to a different page/flow.// The supported events are: * `sys.no-match-`, where N can be from 1 to 6 *// `sys.no-match-default` * `sys.no-input-`, where N can be from 1 to 6 *// `sys.no-input-default` * `sys.invalid-parameter`// `initial_prompt_fulfillment` provides the first prompt for the parameter. If// the user's response does not fill the parameter, a no-match/no-input event// will be triggered, and the fulfillment associated with the// `sys.no-match-1`/`sys.no-input-1` handler (if defined) will be called to// provide a prompt. The `sys.no-match-2`/`sys.no-input-2` handler (if defined)// will respond to the next no-match/no-input event, and so on. A// `sys.no-match-default` or `sys.no-input-default` handler will be used to// handle all following no-match/no-input events after all numbered// no-match/no-input handlers for the parameter are consumed. A// `sys.invalid-parameter` handler can be defined to handle the case where the// parameter values have been `invalidated` by webhook. For example, if the// user's response fill the parameter, however the parameter was invalidated by// webhook, the fulfillment associated with the `sys.invalid-parameter` handler// (if defined) will be called to provide a prompt. If the event handler for// the corresponding event can't be found on the parameter,// `initial_prompt_fulfillment` will be re-prompted.RepromptEventHandlers []*GoogleCloudDialogflowCxV3beta1EventHandler `json:"repromptEventHandlers,omitempty"`// ForceSendFields is a list of field names (e.g. "InitialPromptFulfillment")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InitialPromptFulfillment") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior: Configuration forhow the filling of a parameter should be handled.

func (GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillIntentRequest

type GoogleCloudDialogflowCxV3beta1FulfillIntentRequest struct {// Match: The matched intent/event to fulfill.Match *GoogleCloudDialogflowCxV3beta1Match `json:"match,omitempty"`// MatchIntentRequest: Must be same as the corresponding MatchIntent request,// otherwise the behavior is undefined.MatchIntentRequest *GoogleCloudDialogflowCxV3beta1MatchIntentRequest `json:"matchIntentRequest,omitempty"`// OutputAudioConfig: Instructs the speech synthesizer how to generate output// audio.OutputAudioConfig *GoogleCloudDialogflowCxV3beta1OutputAudioConfig `json:"outputAudioConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "Match") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Match") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillIntentRequest: Request of FulfillIntent

func (GoogleCloudDialogflowCxV3beta1FulfillIntentRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillIntentResponse

type GoogleCloudDialogflowCxV3beta1FulfillIntentResponse struct {// OutputAudio: The audio data bytes encoded as specified in the request. Note:// The output audio is generated based on the values of default platform text// responses found in the `query_result.response_messages` field. If multiple// default text responses exist, they will be concatenated when generating// audio. If no default platform text responses exist, the generated audio// content will be empty. In some scenarios, multiple output audio fields may// be present in the response structure. In these cases, only the// top-most-level audio output has content.OutputAudiostring `json:"outputAudio,omitempty"`// OutputAudioConfig: The config used by the speech synthesizer to generate the// output audio.OutputAudioConfig *GoogleCloudDialogflowCxV3beta1OutputAudioConfig `json:"outputAudioConfig,omitempty"`// QueryResult: The result of the conversational query.QueryResult *GoogleCloudDialogflowCxV3beta1QueryResult `json:"queryResult,omitempty"`// ResponseId: Output only. The unique identifier of the response. It can be// used to locate a response in the training example set or for reporting// issues.ResponseIdstring `json:"responseId,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "OutputAudio") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OutputAudio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillIntentResponse: Response ofFulfillIntent

func (GoogleCloudDialogflowCxV3beta1FulfillIntentResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Fulfillment

type GoogleCloudDialogflowCxV3beta1Fulfillment struct {// AdvancedSettings: Hierarchical advanced settings for this fulfillment. The// settings exposed at the lower level overrides the settings exposed at the// higher level.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// ConditionalCases: Conditional cases for this fulfillment.ConditionalCases []*GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases `json:"conditionalCases,omitempty"`// EnableGenerativeFallback: If the flag is true, the agent will utilize LLM to// generate a text response. If LLM generation fails, the defined responses in// the fulfillment will be respected. This flag is only useful for fulfillments// associated with no-match event handlers.EnableGenerativeFallbackbool `json:"enableGenerativeFallback,omitempty"`// Generators: A list of Generators to be called during this fulfillment.Generators []*GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings `json:"generators,omitempty"`// Messages: The list of rich message responses to present to the user.Messages []*GoogleCloudDialogflowCxV3beta1ResponseMessage `json:"messages,omitempty"`// ReturnPartialResponses: Whether Dialogflow should return currently queued// fulfillment response messages in streaming APIs. If a webhook is specified,// it happens before Dialogflow invokes webhook. Warning: 1) This flag only// affects streaming API. Responses are still queued and returned once in// non-streaming API. 2) The flag can be enabled in any fulfillment but only// the first 3 partial responses will be returned. You may only want to apply// it to fulfillments that have slow webhooks.ReturnPartialResponsesbool `json:"returnPartialResponses,omitempty"`// SetParameterActions: Set parameter values before executing the webhook.SetParameterActions []*GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction `json:"setParameterActions,omitempty"`// Tag: The value of this field will be populated in the WebhookRequest// `fulfillmentInfo.tag` field by Dialogflow when the associated webhook is// called. The tag is typically used by the webhook service to identify which// fulfillment is being called, but it could be used for other purposes. This// field is required if `webhook` is specified.Tagstring `json:"tag,omitempty"`// Webhook: The webhook to call. Format:// `projects//locations//agents//webhooks/`.Webhookstring `json:"webhook,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Fulfillment: A fulfillment can do one or moreof the following actions at the same time: * Generate rich messageresponses. * Set parameter values. * Call the webhook. Fulfillments can becalled at various stages in the Page or Form lifecycle. For example, when aDetectIntentRequest drives a session to enter a new page, the page's entryfulfillment can add a static response to the QueryResult in the returningDetectIntentResponse, call the webhook (for example, to load user data froma database), or both.

func (GoogleCloudDialogflowCxV3beta1Fulfillment)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases

type GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases struct {// Cases: A list of cascading if-else conditions.Cases []*GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase `json:"cases,omitempty"`// ForceSendFields is a list of field names (e.g. "Cases") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cases") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases: A list ofcascading if-else conditions. Cases are mutually exclusive. The first onewith a matching condition is selected, all the rest ignored.

func (GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase

type GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase struct {// CaseContent: A list of case content.CaseContent []*GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent `json:"caseContent,omitempty"`// Condition: The condition to activate and select this case. Empty means the// condition is always true. The condition is evaluated against form parameters// or session parameters. See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition).Conditionstring `json:"condition,omitempty"`// ForceSendFields is a list of field names (e.g. "CaseContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CaseContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase: Each case hasa Boolean condition. When it is evaluated to be True, the correspondingmessages will be selected and evaluated recursively.

func (GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent

type GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent struct {// AdditionalCases: Additional cases to be evaluated.AdditionalCases *GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases `json:"additionalCases,omitempty"`// Message: Returned message.Message *GoogleCloudDialogflowCxV3beta1ResponseMessage `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalCases") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdditionalCases") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent:The list of messages or conditional cases to activate for this case.

func (GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettingsadded inv0.239.0

type GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings struct {// Generator: Required. The generator to call. Format:// `projects//locations//agents//generators/`.Generatorstring `json:"generator,omitempty"`// InputParameters: Map from placeholder parameter in the Generator to// corresponding session parameters. By default, Dialogflow uses the session// parameter with the same name to fill in the generator template. e.g. If// there is a placeholder parameter `city` in the Generator, Dialogflow default// to fill in the `$city` with `$session.params.city`. However, you may choose// to fill `$city` with `$session.params.desination-city`. - Map key: parameter// ID - Map value: session parameter nameInputParameters map[string]string `json:"inputParameters,omitempty"`// OutputParameter: Required. Output parameter which should contain the// generator response.OutputParameterstring `json:"outputParameter,omitempty"`// ForceSendFields is a list of field names (e.g. "Generator") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Generator") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings: Generatorsettings used by the LLM to generate a text response.

func (GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings)MarshalJSONadded inv0.239.0

typeGoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction

type GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction struct {// Parameter: Display name of the parameter.Parameterstring `json:"parameter,omitempty"`// Value: The new value of the parameter. A null value clears the parameter.Value interface{} `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameter") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameter") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction: Setting aparameter value.

func (GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1GcsDestinationadded inv0.110.0

type GoogleCloudDialogflowCxV3beta1GcsDestination struct {// Uri: Required. The Google Cloud Storage URI for the exported objects. A URI// is of the form: `gs://bucket/object-name-or-prefix` Whether a full object// name, or just a prefix, its usage depends on the Dialogflow operation.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GcsDestination: Google Cloud Storage locationfor a Dialogflow operation that writes or exports objects (e.g. exportedagent or transcripts) outside of Dialogflow.

func (GoogleCloudDialogflowCxV3beta1GcsDestination)MarshalJSONadded inv0.110.0

typeGoogleCloudDialogflowCxV3beta1GenerativeInfoadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1GenerativeInfo struct {// ActionTracingInfo: The actions performed by the generative playbook for the// current agent response.ActionTracingInfo *GoogleCloudDialogflowCxV3beta1Example `json:"actionTracingInfo,omitempty"`// CurrentPlaybooks: The stack of playbooks that the conversation has currently// entered, with the most recent one on the top.CurrentPlaybooks []string `json:"currentPlaybooks,omitempty"`// ForceSendFields is a list of field names (e.g. "ActionTracingInfo") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ActionTracingInfo") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GenerativeInfo: Represents the information ofa query if handled by generative agent resources.

func (GoogleCloudDialogflowCxV3beta1GenerativeInfo)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1GenerativeSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1GenerativeSettings struct {// FallbackSettings: Settings for Generative Fallback.FallbackSettings *GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings `json:"fallbackSettings,omitempty"`// GenerativeSafetySettings: Settings for Generative Safety.GenerativeSafetySettings *GoogleCloudDialogflowCxV3beta1SafetySettings `json:"generativeSafetySettings,omitempty"`// KnowledgeConnectorSettings: Settings for knowledge connector.KnowledgeConnectorSettings *GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings `json:"knowledgeConnectorSettings,omitempty"`// LanguageCode: Language for this settings.LanguageCodestring `json:"languageCode,omitempty"`// LlmModelSettings: LLM model settings.LlmModelSettings *GoogleCloudDialogflowCxV3beta1LlmModelSettings `json:"llmModelSettings,omitempty"`// Name: Format: `projects//locations//agents//generativeSettings`.Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "FallbackSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FallbackSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GenerativeSettings: Settings for GenerativeAI.

func (GoogleCloudDialogflowCxV3beta1GenerativeSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings struct {// PromptTemplates: Stored prompts that can be selected, for example default// templates like "conservative" or "chatty", or user defined ones.PromptTemplates []*GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate `json:"promptTemplates,omitempty"`// SelectedPrompt: Display name of the selected prompt.SelectedPromptstring `json:"selectedPrompt,omitempty"`// ForceSendFields is a list of field names (e.g. "PromptTemplates") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PromptTemplates") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings: Settingsfor Generative Fallback.

func (GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplateadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate struct {// DisplayName: Prompt name.DisplayNamestring `json:"displayName,omitempty"`// Frozen: If the flag is true, the prompt is frozen and cannot be modified by// users.Frozenbool `json:"frozen,omitempty"`// PromptText: Prompt text that is sent to a LLM on no-match default,// placeholders are filled downstream. For example: "Here is a conversation// $conversation, a response is: "PromptTextstring `json:"promptText,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate: Prompt template.

func (GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings struct {// Agent: Name of the virtual agent. Used for LLM prompt. Can be left empty.Agentstring `json:"agent,omitempty"`// AgentIdentity: Identity of the agent, e.g. "virtual agent", "AI assistant".AgentIdentitystring `json:"agentIdentity,omitempty"`// AgentScope: Agent scope, e.g. "Example company website", "internal Example// company website for employees", "manual of car owner".AgentScopestring `json:"agentScope,omitempty"`// Business: Name of the company, organization or other entity that the agent// represents. Used for knowledge connector LLM prompt and for knowledge// search.Businessstring `json:"business,omitempty"`// BusinessDescription: Company description, used for LLM prompt, e.g. "a// family company selling freshly roasted coffee beans".BusinessDescriptionstring `json:"businessDescription,omitempty"`// DisableDataStoreFallback: Whether to disable fallback to Data Store search// results (in case the LLM couldn't pick a proper answer). Per default the// feature is enabled.DisableDataStoreFallbackbool `json:"disableDataStoreFallback,omitempty"`// ForceSendFields is a list of field names (e.g. "Agent") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Agent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings:Settings for knowledge connector. These parameters are used for LLM promptlike "You are . You are a helpful and verbose at , . Your task is to helphumans on ".

func (GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1Generatoradded inv0.154.0

type GoogleCloudDialogflowCxV3beta1Generator struct {// DisplayName: Required. The human-readable name of the generator, unique// within the agent. The prompt contains pre-defined parameters such as// $conversation, $last-user-utterance, etc. populated by Dialogflow. It can// also contain custom placeholders which will be resolved during fulfillment.DisplayNamestring `json:"displayName,omitempty"`// LlmModelSettings: The LLM model settings.LlmModelSettings *GoogleCloudDialogflowCxV3beta1LlmModelSettings `json:"llmModelSettings,omitempty"`// ModelParameter: Parameters passed to the LLM to configure its behavior.ModelParameter *GoogleCloudDialogflowCxV3beta1GeneratorModelParameter `json:"modelParameter,omitempty"`// Name: The unique identifier of the generator. Must be set for the// Generators.UpdateGenerator method. Generators.CreateGenerate populates the// name automatically. Format: `projects//locations//agents//generators/`.Namestring `json:"name,omitempty"`// Placeholders: Optional. List of custom placeholders in the prompt text.Placeholders []*GoogleCloudDialogflowCxV3beta1GeneratorPlaceholder `json:"placeholders,omitempty"`// PromptText: Required. Prompt for the LLM model.PromptText *GoogleCloudDialogflowCxV3beta1Phrase `json:"promptText,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Generator: Generators contain prompt to besent to the LLM model to generate text. The prompt can contain parameterswhich will be resolved before calling the model. It can optionally containbanned phrases to ensure the model responses are safe.

func (GoogleCloudDialogflowCxV3beta1Generator)MarshalJSONadded inv0.154.0

typeGoogleCloudDialogflowCxV3beta1GeneratorModelParameteradded inv0.205.0

type GoogleCloudDialogflowCxV3beta1GeneratorModelParameter struct {// MaxDecodeSteps: The maximum number of tokens to generate.MaxDecodeStepsint64 `json:"maxDecodeSteps,omitempty"`// Temperature: The temperature used for sampling. Temperature sampling occurs// after both topP and topK have been applied. Valid range: [0.0, 1.0] Low// temperature = less random. High temperature = more random.Temperaturefloat64 `json:"temperature,omitempty"`// TopK: If set, the sampling process in each step is limited to the top_k// tokens with highest probabilities. Valid range: [1, 40] or 1000+. Small topK// = less random. Large topK = more random.TopKint64 `json:"topK,omitempty"`// TopP: If set, only the tokens comprising the top top_p probability mass are// considered. If both top_p and top_k are set, top_p will be used for further// refining candidates selected with top_k. Valid range: (0.0, 1.0]. Small topP// = less random. Large topP = more random.TopPfloat64 `json:"topP,omitempty"`// ForceSendFields is a list of field names (e.g. "MaxDecodeSteps") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MaxDecodeSteps") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GeneratorModelParameter: Parameters to bepassed to the LLM. If not set, default values will be used.

func (GoogleCloudDialogflowCxV3beta1GeneratorModelParameter)MarshalJSONadded inv0.205.0

func (*GoogleCloudDialogflowCxV3beta1GeneratorModelParameter)UnmarshalJSONadded inv0.205.0

typeGoogleCloudDialogflowCxV3beta1GeneratorPlaceholderadded inv0.154.0

type GoogleCloudDialogflowCxV3beta1GeneratorPlaceholder struct {// Id: Unique ID used to map custom placeholder to parameters in fulfillment.Idstring `json:"id,omitempty"`// Name: Custom placeholder value in the prompt text.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Id") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Id") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1GeneratorPlaceholder: Represents a customplaceholder in the prompt text.

func (GoogleCloudDialogflowCxV3beta1GeneratorPlaceholder)MarshalJSONadded inv0.154.0

typeGoogleCloudDialogflowCxV3beta1Handleradded inv0.225.0

type GoogleCloudDialogflowCxV3beta1Handler struct {// EventHandler: A handler triggered by event.EventHandler *GoogleCloudDialogflowCxV3beta1HandlerEventHandler `json:"eventHandler,omitempty"`// LifecycleHandler: A handler triggered during specific lifecycle of the// playbook execution.LifecycleHandler *GoogleCloudDialogflowCxV3beta1HandlerLifecycleHandler `json:"lifecycleHandler,omitempty"`// ForceSendFields is a list of field names (e.g. "EventHandler") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EventHandler") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Handler: Handler can be used to define customlogic to be executed based on the user-specified triggers.

func (GoogleCloudDialogflowCxV3beta1Handler)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1HandlerEventHandleradded inv0.225.0

type GoogleCloudDialogflowCxV3beta1HandlerEventHandler struct {// Condition: Optional. The condition that must be satisfied to trigger this// handler.Conditionstring `json:"condition,omitempty"`// Event: Required. The name of the event that triggers this handler.Eventstring `json:"event,omitempty"`// Fulfillment: Required. The fulfillment to call when the event occurs.Fulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"fulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1HandlerEventHandler: A handler that istriggered by the specified event.

func (GoogleCloudDialogflowCxV3beta1HandlerEventHandler)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1HandlerLifecycleHandleradded inv0.225.0

type GoogleCloudDialogflowCxV3beta1HandlerLifecycleHandler struct {// Condition: Optional. The condition that must be satisfied to trigger this// handler.Conditionstring `json:"condition,omitempty"`// Fulfillment: Required. The fulfillment to call when this handler is// triggered.Fulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"fulfillment,omitempty"`// LifecycleStage: Required. The name of the lifecycle stage that triggers this// handler. Supported values: * `playbook-start` * `pre-action-selection` *// `pre-action-execution`LifecycleStagestring `json:"lifecycleStage,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1HandlerLifecycleHandler: A handler that istriggered on the specific lifecycle_stage of the playbook execution.

func (GoogleCloudDialogflowCxV3beta1HandlerLifecycleHandler)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadataadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata struct {}

GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata: Metadata returnedfor the EntityTypes.ImportEntityTypes long running operation.

typeGoogleCloudDialogflowCxV3beta1ImportEntityTypesRequestadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ImportEntityTypesRequest struct {// EntityTypesContent: Uncompressed byte content of entity types.EntityTypesContent *GoogleCloudDialogflowCxV3beta1InlineSource `json:"entityTypesContent,omitempty"`// EntityTypesUri: The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to import entity types from.// The format of this URI must be `gs:///`. Dialogflow performs a read// operation for the Cloud Storage object on the caller's behalf, so your// request authentication must have read permissions for the object. For more// information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).EntityTypesUristring `json:"entityTypesUri,omitempty"`// MergeOption: Required. Merge option for importing entity types.//// Possible values://   "MERGE_OPTION_UNSPECIFIED" - Unspecified. If used, system uses// REPORT_CONFLICT as default.//   "REPLACE" - Replace the original entity type in the agent with the new// entity type when display name conflicts exist.//   "MERGE" - Merge the original entity type with the new entity type when// display name conflicts exist.//   "RENAME" - Create new entity types with new display names to differentiate// them from the existing entity types when display name conflicts exist.//   "REPORT_CONFLICT" - Report conflict information if display names conflict// is detected. Otherwise, import entity types.//   "KEEP" - Keep the original entity type and discard the conflicting new// entity type when display name conflicts exist.MergeOptionstring `json:"mergeOption,omitempty"`// TargetEntityType: Optional. The target entity type to import into. Format:// `projects//locations//agents//entity_types/`. If set, there should be only// one entity type included in entity_types, of which the type should match the// type of the target entity type. All entities in the imported entity type// will be added to the target entity type.TargetEntityTypestring `json:"targetEntityType,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityTypesContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypesContent") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportEntityTypesRequest: The request messagefor EntityTypes.ImportEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ImportEntityTypesRequest)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse struct {// ConflictingResources: Info which resources have conflicts when// REPORT_CONFLICT merge_option is set in ImportEntityTypesRequest.ConflictingResources *GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources `json:"conflictingResources,omitempty"`// EntityTypes: The unique identifier of the imported entity types. Format:// `projects//locations//agents//entity_types/`.EntityTypes []string `json:"entityTypes,omitempty"`// ForceSendFields is a list of field names (e.g. "ConflictingResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConflictingResources") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse: The responsemessage for EntityTypes.ImportEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResourcesadded inv0.164.0

type GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources struct {// EntityDisplayNames: Display names of conflicting entities.EntityDisplayNames []string `json:"entityDisplayNames,omitempty"`// EntityTypeDisplayNames: Display names of conflicting entity types.EntityTypeDisplayNames []string `json:"entityTypeDisplayNames,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityDisplayNames") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityDisplayNames") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources:Conflicting resources detected during the import process. Only filled whenREPORT_CONFLICT is set in the request and there are conflicts in the displaynames.

func (GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources)MarshalJSONadded inv0.164.0

typeGoogleCloudDialogflowCxV3beta1ImportFlowRequestadded inv0.46.0

type GoogleCloudDialogflowCxV3beta1ImportFlowRequest struct {// FlowContent: Uncompressed raw byte content for flow.FlowContentstring `json:"flowContent,omitempty"`// FlowImportStrategy: Optional. Specifies the import strategy used when// resolving resource conflicts.FlowImportStrategy *GoogleCloudDialogflowCxV3beta1FlowImportStrategy `json:"flowImportStrategy,omitempty"`// FlowUri: The Google Cloud Storage (https://cloud.google.com/storage/docs/)// URI to import flow from. The format of this URI must be `gs:///`. Dialogflow// performs a read operation for the Cloud Storage object on the caller's// behalf, so your request authentication must have read permissions for the// object. For more information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).FlowUristring `json:"flowUri,omitempty"`// ImportOption: Flow import mode. If not specified, `KEEP` is assumed.//// Possible values://   "IMPORT_OPTION_UNSPECIFIED" - Unspecified. Treated as `KEEP`.//   "KEEP" - Always respect settings in exported flow content. It may cause a// import failure if some settings (e.g. custom NLU) are not supported in the// agent to import into.//   "FALLBACK" - Fallback to default settings if some settings are not// supported in the agent to import into. E.g. Standard NLU will be used if// custom NLU is not available.ImportOptionstring `json:"importOption,omitempty"`// ForceSendFields is a list of field names (e.g. "FlowContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FlowContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportFlowRequest: The request message forFlows.ImportFlow.

func (GoogleCloudDialogflowCxV3beta1ImportFlowRequest)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3beta1ImportFlowResponseadded inv0.46.0

type GoogleCloudDialogflowCxV3beta1ImportFlowResponse struct {// Flow: The unique identifier of the new flow. Format:// `projects//locations//agents//flows/`.Flowstring `json:"flow,omitempty"`// ForceSendFields is a list of field names (e.g. "Flow") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flow") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportFlowResponse: The response message forFlows.ImportFlow.

func (GoogleCloudDialogflowCxV3beta1ImportFlowResponse)MarshalJSONadded inv0.46.0

typeGoogleCloudDialogflowCxV3beta1ImportIntentsMetadataadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata struct {}

GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata: Metadata returned forthe Intents.ImportIntents long running operation.

typeGoogleCloudDialogflowCxV3beta1ImportIntentsRequestadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ImportIntentsRequest struct {// IntentsContent: Uncompressed byte content of intents.IntentsContent *GoogleCloudDialogflowCxV3beta1InlineSource `json:"intentsContent,omitempty"`// IntentsUri: The Google Cloud Storage// (https://cloud.google.com/storage/docs/) URI to import intents from. The// format of this URI must be `gs:///`. Dialogflow performs a read operation// for the Cloud Storage object on the caller's behalf, so your request// authentication must have read permissions for the object. For more// information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).IntentsUristring `json:"intentsUri,omitempty"`// MergeOption: Merge option for importing intents. If not specified, `REJECT`// is assumed.//// Possible values://   "MERGE_OPTION_UNSPECIFIED" - Unspecified. Should not be used.//   "REJECT" - DEPRECATED: Please use REPORT_CONFLICT instead. Fail the// request if there are intents whose display names conflict with the display// names of intents in the agent.//   "REPLACE" - Replace the original intent in the agent with the new intent// when display name conflicts exist.//   "MERGE" - Merge the original intent with the new intent when display name// conflicts exist.//   "RENAME" - Create new intents with new display names to differentiate them// from the existing intents when display name conflicts exist.//   "REPORT_CONFLICT" - Report conflict information if display names conflict// is detected. Otherwise, import intents.//   "KEEP" - Keep the original intent and discard the conflicting new intent// when display name conflicts exist.MergeOptionstring `json:"mergeOption,omitempty"`// ForceSendFields is a list of field names (e.g. "IntentsContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IntentsContent") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportIntentsRequest: The request message forIntents.ImportIntents.

func (GoogleCloudDialogflowCxV3beta1ImportIntentsRequest)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1ImportIntentsResponseadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ImportIntentsResponse struct {// ConflictingResources: Info which resources have conflicts when// REPORT_CONFLICT merge_option is set in ImportIntentsRequest.ConflictingResources *GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources `json:"conflictingResources,omitempty"`// Intents: The unique identifier of the imported intents. Format:// `projects//locations//agents//intents/`.Intents []string `json:"intents,omitempty"`// ForceSendFields is a list of field names (e.g. "ConflictingResources") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConflictingResources") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportIntentsResponse: The response messagefor Intents.ImportIntents.

func (GoogleCloudDialogflowCxV3beta1ImportIntentsResponse)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResourcesadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources struct {// EntityDisplayNames: Display names of conflicting entities.EntityDisplayNames []string `json:"entityDisplayNames,omitempty"`// IntentDisplayNames: Display names of conflicting intents.IntentDisplayNames []string `json:"intentDisplayNames,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityDisplayNames") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityDisplayNames") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources:Conflicting resources detected during the import process. Only filled whenREPORT_CONFLICT is set in the request and there are conflicts in the displaynames.

func (GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1ImportPlaybookRequestadded inv0.212.0

type GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest struct {// ImportStrategy: Optional. Specifies the import strategy used when resolving// resource conflicts.ImportStrategy *GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy `json:"importStrategy,omitempty"`// PlaybookContent: Uncompressed raw byte content for playbook.PlaybookContentstring `json:"playbookContent,omitempty"`// PlaybookUri: [Dialogflow access control]// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).PlaybookUristring `json:"playbookUri,omitempty"`// ForceSendFields is a list of field names (e.g. "ImportStrategy") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ImportStrategy") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest: The request message forPlaybooks.ImportPlaybook.

func (GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest)MarshalJSONadded inv0.212.0

typeGoogleCloudDialogflowCxV3beta1ImportTestCasesMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata struct {// Errors: Errors for failed test cases.Errors []*GoogleCloudDialogflowCxV3beta1TestCaseError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata: Metadata returned forthe TestCases.ImportTestCases long running operation.

func (GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ImportTestCasesRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ImportTestCasesRequest struct {// Content: Uncompressed raw byte content for test cases.Contentstring `json:"content,omitempty"`// GcsUri: The Google Cloud Storage (https://cloud.google.com/storage/docs/)// URI to import test cases from. The format of this URI must be `gs:///`.// Dialogflow performs a read operation for the Cloud Storage object on the// caller's behalf, so your request authentication must have read permissions// for the object. For more information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).GcsUristring `json:"gcsUri,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportTestCasesRequest: The request messagefor TestCases.ImportTestCases.

func (GoogleCloudDialogflowCxV3beta1ImportTestCasesRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ImportTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ImportTestCasesResponse struct {// Names: The unique identifiers of the new test cases. Format:// `projects//locations//agents//testCases/`.Names []string `json:"names,omitempty"`// ForceSendFields is a list of field names (e.g. "Names") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Names") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ImportTestCasesResponse: The response messagefor TestCases.ImportTestCases.

func (GoogleCloudDialogflowCxV3beta1ImportTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1InlineDestinationadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1InlineDestination struct {// Content: Output only. The uncompressed byte content for the objects. Only// populated in responses.Contentstring `json:"content,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1InlineDestination: Inline destination for aDialogflow operation that writes or exports objects (e.g. intents) outsideof Dialogflow.

func (GoogleCloudDialogflowCxV3beta1InlineDestination)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1InlineSchemaadded inv0.191.0

type GoogleCloudDialogflowCxV3beta1InlineSchema struct {// Items: Schema of the elements if this is an ARRAY type.Items *GoogleCloudDialogflowCxV3beta1TypeSchema `json:"items,omitempty"`// Type: Data type of the schema.//// Possible values://   "DATA_TYPE_UNSPECIFIED" - Not specified.//   "STRING" - Represents any string value.//   "NUMBER" - Represents any number value.//   "BOOLEAN" - Represents a boolean value.//   "ARRAY" - Represents a repeated value.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1InlineSchema: A type schema object that'sspecified inline.

func (GoogleCloudDialogflowCxV3beta1InlineSchema)MarshalJSONadded inv0.191.0

typeGoogleCloudDialogflowCxV3beta1InlineSourceadded inv0.143.0

type GoogleCloudDialogflowCxV3beta1InlineSource struct {// Content: The uncompressed byte content for the objects.Contentstring `json:"content,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1InlineSource: Inline source for a Dialogflowoperation that reads or imports objects (e.g. intents) into Dialogflow.

func (GoogleCloudDialogflowCxV3beta1InlineSource)MarshalJSONadded inv0.143.0

typeGoogleCloudDialogflowCxV3beta1InputAudioConfig

type GoogleCloudDialogflowCxV3beta1InputAudioConfig struct {// AudioEncoding: Required. Audio encoding of the audio content to process.//// Possible values://   "AUDIO_ENCODING_UNSPECIFIED" - Not specified.//   "AUDIO_ENCODING_LINEAR_16" - Uncompressed 16-bit signed little-endian// samples (Linear PCM). LINT: LEGACY_NAMES//   "AUDIO_ENCODING_FLAC" - [`FLAC`](https://xiph.org/flac/documentation.html)// (Free Lossless Audio Codec) is the recommended encoding because it is// lossless (therefore recognition is not compromised) and requires only about// half the bandwidth of `LINEAR16`. `FLAC` stream encoding supports 16-bit and// 24-bit samples, however, not all fields in `STREAMINFO` are supported.//   "AUDIO_ENCODING_MULAW" - 8-bit samples that compand 14-bit audio samples// using G.711 PCMU/mu-law.//   "AUDIO_ENCODING_AMR" - Adaptive Multi-Rate Narrowband codec.// `sample_rate_hertz` must be 8000.//   "AUDIO_ENCODING_AMR_WB" - Adaptive Multi-Rate Wideband codec.// `sample_rate_hertz` must be 16000.//   "AUDIO_ENCODING_OGG_OPUS" - Opus encoded audio frames in Ogg container// ([OggOpus](https://wiki.xiph.org/OggOpus)). `sample_rate_hertz` must be// 16000.//   "AUDIO_ENCODING_SPEEX_WITH_HEADER_BYTE" - Although the use of lossy// encodings is not recommended, if a very low bitrate encoding is required,// `OGG_OPUS` is highly preferred over Speex encoding. The// [Speex](https://speex.org/) encoding supported by Dialogflow API has a// header byte in each block, as in MIME type `audio/x-speex-with-header-byte`.// It is a variant of the RTP Speex encoding defined in [RFC// 5574](https://tools.ietf.org/html/rfc5574). The stream is a sequence of// blocks, one block per RTP packet. Each block starts with a byte containing// the length of the block, in bytes, followed by one or more frames of Speex// data, padded to an integral number of bytes (octets) as specified in RFC// 5574. In other words, each RTP header is replaced with a single byte// containing the block length. Only Speex wideband is supported.// `sample_rate_hertz` must be 16000.//   "AUDIO_ENCODING_ALAW" - 8-bit samples that compand 13-bit audio samples// using G.711 PCMU/a-law.AudioEncodingstring `json:"audioEncoding,omitempty"`// BargeInConfig: Configuration of barge-in behavior during the streaming of// input audio.BargeInConfig *GoogleCloudDialogflowCxV3beta1BargeInConfig `json:"bargeInConfig,omitempty"`// EnableWordInfo: Optional. If `true`, Dialogflow returns SpeechWordInfo in// StreamingRecognitionResult with information about the recognized speech// words, e.g. start and end time offsets. If false or unspecified, Speech// doesn't return any word-level information.EnableWordInfobool `json:"enableWordInfo,omitempty"`// Model: Optional. Which Speech model to select for the given request. For// more information, see Speech models// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).Modelstring `json:"model,omitempty"`// ModelVariant: Optional. Which variant of the Speech model to use.//// Possible values://   "SPEECH_MODEL_VARIANT_UNSPECIFIED" - No model variant specified. In this// case Dialogflow defaults to USE_BEST_AVAILABLE.//   "USE_BEST_AVAILABLE" - Use the best available variant of the Speech model// that the caller is eligible for.//   "USE_STANDARD" - Use standard model variant even if an enhanced model is// available. See the [Cloud Speech// documentation](https://cloud.google.com/speech-to-text/docs/enhanced-models)// for details about enhanced models.//   "USE_ENHANCED" - Use an enhanced model variant: * If an enhanced variant// does not exist for the given model and request language, Dialogflow falls// back to the standard variant. The [Cloud Speech// documentation](https://cloud.google.com/speech-to-text/docs/enhanced-models)// describes which models have enhanced variants.ModelVariantstring `json:"modelVariant,omitempty"`// OptOutConformerModelMigration: If `true`, the request will opt out for STT// conformer model migration. This field will be deprecated once force// migration takes place in June 2024. Please refer to Dialogflow CX Speech// model migration// (https://cloud.google.com/dialogflow/cx/docs/concept/speech-model-migration).OptOutConformerModelMigrationbool `json:"optOutConformerModelMigration,omitempty"`// PhraseHints: Optional. A list of strings containing words and phrases that// the speech recognizer should recognize with higher likelihood. See the Cloud// Speech documentation// (https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more// details.PhraseHints []string `json:"phraseHints,omitempty"`// SampleRateHertz: Sample rate (in Hertz) of the audio content sent in the// query. Refer to Cloud Speech API documentation// (https://cloud.google.com/speech-to-text/docs/basics) for more details.SampleRateHertzint64 `json:"sampleRateHertz,omitempty"`// SingleUtterance: Optional. If `false` (default), recognition does not cease// until the client closes the stream. If `true`, the recognizer will detect a// single spoken utterance in input audio. Recognition ceases when it detects// the audio's voice has stopped or paused. In this case, once a detected// intent is received, the client should close the stream and start a new// request with a new stream as needed. Note: This setting is relevant only for// streaming methods.SingleUtterancebool `json:"singleUtterance,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioEncoding") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioEncoding") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1InputAudioConfig: Instructs the speechrecognizer on how to process the audio content.

func (GoogleCloudDialogflowCxV3beta1InputAudioConfig)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Intent

type GoogleCloudDialogflowCxV3beta1Intent struct {// Description: Human readable description for better understanding an intent// like its scope, content, result etc. Maximum character limit: 140// characters.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the intent, unique within// the agent.DisplayNamestring `json:"displayName,omitempty"`// IsFallback: Indicates whether this is a fallback intent. Currently only// default fallback intent is allowed in the agent, which is added upon agent// creation. Adding training phrases to fallback intent is useful in the case// of requests that are mistakenly matched, since training phrases assigned to// fallback intents act as negative examples that triggers no-match event.IsFallbackbool `json:"isFallback,omitempty"`// Labels: The key/value metadata to label an intent. Labels can contain// lowercase letters, digits and the symbols '-' and '_'. International// characters are allowed, including letters from unicase alphabets. Keys must// start with a letter. Keys and values can be no longer than 63 characters and// no more than 128 bytes. Prefix "sys-" is reserved for Dialogflow defined// labels. Currently allowed Dialogflow defined labels include: * sys-head *// sys-contextual The above labels do not require value. "sys-head" means the// intent is a head intent. "sys-contextual" means the intent is a contextual// intent.Labels map[string]string `json:"labels,omitempty"`// Name: The unique identifier of the intent. Required for the// Intents.UpdateIntent method. Intents.CreateIntent populates the name// automatically. Format: `projects//locations//agents//intents/`.Namestring `json:"name,omitempty"`// Parameters: The collection of parameters associated with the intent.Parameters []*GoogleCloudDialogflowCxV3beta1IntentParameter `json:"parameters,omitempty"`// Priority: The priority of this intent. Higher numbers represent higher// priorities. - If the supplied value is unspecified or 0, the service// translates the value to 500,000, which corresponds to the `Normal` priority// in the console. - If the supplied value is negative, the intent is ignored// in runtime detect intent requests.Priorityint64 `json:"priority,omitempty"`// TrainingPhrases: The collection of training phrases the agent is trained on// to identify the intent.TrainingPhrases []*GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase `json:"trainingPhrases,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Intent: An intent represents a user's intentto interact with a conversational agent. You can provide information for theDialogflow API to use to match user input to an intent by adding trainingphrases (i.e., examples of user input) to your intent.

func (GoogleCloudDialogflowCxV3beta1Intent)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1IntentCoverageadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1IntentCoverage struct {// CoverageScore: The percent of intents in the agent that are covered.CoverageScorefloat64 `json:"coverageScore,omitempty"`// Intents: The list of Intents present in the agentIntents []*GoogleCloudDialogflowCxV3beta1IntentCoverageIntent `json:"intents,omitempty"`// ForceSendFields is a list of field names (e.g. "CoverageScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CoverageScore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentCoverage: Intent coverage represents thepercentage of all possible intents in the agent that are triggered in any ofa parent's test cases.

func (GoogleCloudDialogflowCxV3beta1IntentCoverage)MarshalJSONadded inv0.37.0

func (*GoogleCloudDialogflowCxV3beta1IntentCoverage)UnmarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1IntentCoverageIntentadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1IntentCoverageIntent struct {// Covered: Whether the intent is covered by at least one of the agent's test// cases.Coveredbool `json:"covered,omitempty"`// Intent: The intent full resource nameIntentstring `json:"intent,omitempty"`// ForceSendFields is a list of field names (e.g. "Covered") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Covered") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentCoverageIntent: The agent's intent.

func (GoogleCloudDialogflowCxV3beta1IntentCoverageIntent)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1IntentInput

type GoogleCloudDialogflowCxV3beta1IntentInput struct {// Intent: Required. The unique identifier of the intent. Format:// `projects//locations//agents//intents/`.Intentstring `json:"intent,omitempty"`// ForceSendFields is a list of field names (e.g. "Intent") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Intent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentInput: Represents the intent to triggerprogrammatically rather than as a result of natural language processing.

func (GoogleCloudDialogflowCxV3beta1IntentInput)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1IntentParameter

type GoogleCloudDialogflowCxV3beta1IntentParameter struct {// EntityType: Required. The entity type of the parameter. Format:// `projects/-/locations/-/agents/-/entityTypes/` for system entity types (for// example, `projects/-/locations/-/agents/-/entityTypes/sys.date`), or// `projects//locations//agents//entityTypes/` for developer entity types.EntityTypestring `json:"entityType,omitempty"`// Id: Required. The unique identifier of the parameter. This field is used by// training phrases to annotate their parts.Idstring `json:"id,omitempty"`// IsList: Indicates whether the parameter represents a list of values.IsListbool `json:"isList,omitempty"`// Redact: Indicates whether the parameter content should be redacted in log.// If redaction is enabled, the parameter content will be replaced by parameter// name during logging. Note: the parameter content is subject to redaction if// either parameter level redaction or entity type level redaction is enabled.Redactbool `json:"redact,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentParameter: Represents an intentparameter.

func (GoogleCloudDialogflowCxV3beta1IntentParameter)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1IntentTrainingPhrase

type GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase struct {// Id: Output only. The unique identifier of the training phrase.Idstring `json:"id,omitempty"`// Parts: Required. The ordered list of training phrase parts. The parts are// concatenated in order to form the training phrase. Note: The API does not// automatically annotate training phrases like the Dialogflow Console does.// Note: Do not forget to include whitespace at part boundaries, so the// training phrase is well formatted when the parts are concatenated. If the// training phrase does not need to be annotated with parameters, you just need// a single part with only the Part.text field set. If you want to annotate the// training phrase, you must create multiple parts, where the fields of each// part are populated in one of two ways: - `Part.text` is set to a part of the// phrase that has no parameters. - `Part.text` is set to a part of the phrase// that you want to annotate, and the `parameter_id` field is set.Parts []*GoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart `json:"parts,omitempty"`// RepeatCount: Indicates how many times this example was added to the intent.RepeatCountint64 `json:"repeatCount,omitempty"`// ForceSendFields is a list of field names (e.g. "Id") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Id") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase: Represents an examplethat the agent is trained on to identify the intent.

func (GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart

type GoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart struct {// ParameterId: The parameter used to annotate this part of the training// phrase. This field is required for annotated parts of the training phrase.ParameterIdstring `json:"parameterId,omitempty"`// Text: Required. The text for this part.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "ParameterId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ParameterId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart: Represents a part ofa training phrase.

func (GoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings struct {// DataStoreConnections: Optional. List of related data store connections.DataStoreConnections []*GoogleCloudDialogflowCxV3beta1DataStoreConnection `json:"dataStoreConnections,omitempty"`// Enabled: Whether Knowledge Connector is enabled or not.Enabledbool `json:"enabled,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TriggerFulfillment: The fulfillment to be triggered. When the answers from// the Knowledge Connector are selected by Dialogflow, you can utitlize the// request scoped parameter `$request.knowledge.answers` (contains up to the 5// highest confidence answers) and `$request.knowledge.questions` (contains the// corresponding questions) to construct the fulfillment.TriggerFulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStoreConnections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStoreConnections") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings: The KnowledgeConnector settings for this page or flow. This includes information such asthe attached Knowledge Bases, and the way to execute fulfillment.

func (GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1LanguageInfoadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1LanguageInfo struct {// ConfidenceScore: The confidence score of the detected language between 0 and// 1.ConfidenceScorefloat64 `json:"confidenceScore,omitempty"`// InputLanguageCode: The language code specified in the original request.InputLanguageCodestring `json:"inputLanguageCode,omitempty"`// ResolvedLanguageCode: The language code detected for this request based on// the user conversation.ResolvedLanguageCodestring `json:"resolvedLanguageCode,omitempty"`// ForceSendFields is a list of field names (e.g. "ConfidenceScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConfidenceScore") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LanguageInfo: Represents the languageinformation of the request.

func (GoogleCloudDialogflowCxV3beta1LanguageInfo)MarshalJSONadded inv0.177.0

func (*GoogleCloudDialogflowCxV3beta1LanguageInfo)UnmarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ListAgentsResponse

type GoogleCloudDialogflowCxV3beta1ListAgentsResponse struct {// Agents: The list of agents. There will be a maximum number of items returned// based on the page_size field in the request.Agents []*GoogleCloudDialogflowCxV3beta1Agent `json:"agents,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Agents") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Agents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListAgentsResponse: The response message forAgents.ListAgents.

func (GoogleCloudDialogflowCxV3beta1ListAgentsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListChangelogsResponseadded inv0.60.0

type GoogleCloudDialogflowCxV3beta1ListChangelogsResponse struct {// Changelogs: The list of changelogs. There will be a maximum number of items// returned based on the page_size field in the request. The changelogs will be// ordered by timestamp.Changelogs []*GoogleCloudDialogflowCxV3beta1Changelog `json:"changelogs,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Changelogs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Changelogs") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListChangelogsResponse: The response messagefor Changelogs.ListChangelogs.

func (GoogleCloudDialogflowCxV3beta1ListChangelogsResponse)MarshalJSONadded inv0.60.0

typeGoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponseadded inv0.48.0

type GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse struct {// ContinuousTestResults: The list of continuous test results.ContinuousTestResults []*GoogleCloudDialogflowCxV3beta1ContinuousTestResult `json:"continuousTestResults,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ContinuousTestResults") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContinuousTestResults") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse: Theresponse message for Environments.ListTestCaseResults.

func (GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3beta1ListConversationsResponseadded inv0.177.0

type GoogleCloudDialogflowCxV3beta1ListConversationsResponse struct {// Conversations: The list of conversations. There will be a maximum number of// items returned based on the page_size field. The returned conversations will// be sorted by start_time in descending order (newest conversation first).Conversations []*GoogleCloudDialogflowCxV3beta1Conversation `json:"conversations,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Conversations") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conversations") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListConversationsResponse: The responsemessage for Conversations.ListConversations.

func (GoogleCloudDialogflowCxV3beta1ListConversationsResponse)MarshalJSONadded inv0.177.0

typeGoogleCloudDialogflowCxV3beta1ListDeploymentsResponseadded inv0.58.0

type GoogleCloudDialogflowCxV3beta1ListDeploymentsResponse struct {// Deployments: The list of deployments. There will be a maximum number of// items returned based on the page_size field in the request. The list may in// some cases be empty or contain fewer entries than page_size even if this// isn't the last page.Deployments []*GoogleCloudDialogflowCxV3beta1Deployment `json:"deployments,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Deployments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Deployments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListDeploymentsResponse: The response messagefor Deployments.ListDeployments.

func (GoogleCloudDialogflowCxV3beta1ListDeploymentsResponse)MarshalJSONadded inv0.58.0

typeGoogleCloudDialogflowCxV3beta1ListEntityTypesResponse

type GoogleCloudDialogflowCxV3beta1ListEntityTypesResponse struct {// EntityTypes: The list of entity types. There will be a maximum number of// items returned based on the page_size field in the request.EntityTypes []*GoogleCloudDialogflowCxV3beta1EntityType `json:"entityTypes,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EntityTypes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypes") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListEntityTypesResponse: The response messagefor EntityTypes.ListEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ListEntityTypesResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListEnvironmentsResponse

type GoogleCloudDialogflowCxV3beta1ListEnvironmentsResponse struct {// Environments: The list of environments. There will be a maximum number of// items returned based on the page_size field in the request. The list may in// some cases be empty or contain fewer entries than page_size even if this// isn't the last page.Environments []*GoogleCloudDialogflowCxV3beta1Environment `json:"environments,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Environments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Environments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListEnvironmentsResponse: The response messagefor Environments.ListEnvironments.

func (GoogleCloudDialogflowCxV3beta1ListEnvironmentsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListExamplesResponseadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ListExamplesResponse struct {// Examples: The list of examples. There will be a maximum number of items// returned based on the page_size field in the request.Examples []*GoogleCloudDialogflowCxV3beta1Example `json:"examples,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Examples") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Examples") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListExamplesResponse: The response message forExamples.ListExamples.

func (GoogleCloudDialogflowCxV3beta1ListExamplesResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ListExperimentsResponseadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1ListExperimentsResponse struct {// Experiments: The list of experiments. There will be a maximum number of// items returned based on the page_size field in the request. The list may in// some cases be empty or contain fewer entries than page_size even if this// isn't the last page.Experiments []*GoogleCloudDialogflowCxV3beta1Experiment `json:"experiments,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Experiments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Experiments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListExperimentsResponse: The response messagefor Experiments.ListExperiments.

func (GoogleCloudDialogflowCxV3beta1ListExperimentsResponse)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1ListFlowsResponse

type GoogleCloudDialogflowCxV3beta1ListFlowsResponse struct {// Flows: The list of flows. There will be a maximum number of items returned// based on the page_size field in the request.Flows []*GoogleCloudDialogflowCxV3beta1Flow `json:"flows,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Flows") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flows") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListFlowsResponse: The response message forFlows.ListFlows.

func (GoogleCloudDialogflowCxV3beta1ListFlowsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListGeneratorsResponseadded inv0.154.0

type GoogleCloudDialogflowCxV3beta1ListGeneratorsResponse struct {// Generators: The list of generators. There will be a maximum number of items// returned based on the page_size field in the request.Generators []*GoogleCloudDialogflowCxV3beta1Generator `json:"generators,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Generators") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Generators") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListGeneratorsResponse: The response messagefor Generators.ListGenerators.

func (GoogleCloudDialogflowCxV3beta1ListGeneratorsResponse)MarshalJSONadded inv0.154.0

typeGoogleCloudDialogflowCxV3beta1ListIntentsResponse

type GoogleCloudDialogflowCxV3beta1ListIntentsResponse struct {// Intents: The list of intents. There will be a maximum number of items// returned based on the page_size field in the request.Intents []*GoogleCloudDialogflowCxV3beta1Intent `json:"intents,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Intents") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Intents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListIntentsResponse: The response message forIntents.ListIntents.

func (GoogleCloudDialogflowCxV3beta1ListIntentsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListPagesResponse

type GoogleCloudDialogflowCxV3beta1ListPagesResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// Pages: The list of pages. There will be a maximum number of items returned// based on the page_size field in the request.Pages []*GoogleCloudDialogflowCxV3beta1Page `json:"pages,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListPagesResponse: The response message forPages.ListPages.

func (GoogleCloudDialogflowCxV3beta1ListPagesResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListPlaybookVersionsResponseadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ListPlaybookVersionsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// PlaybookVersions: The list of playbook version. There will be a maximum// number of items returned based on the page_size field in the request.PlaybookVersions []*GoogleCloudDialogflowCxV3beta1PlaybookVersion `json:"playbookVersions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListPlaybookVersionsResponse: The responsemessage for Playbooks.ListPlaybookVersions.

func (GoogleCloudDialogflowCxV3beta1ListPlaybookVersionsResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ListPlaybooksResponseadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ListPlaybooksResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// Playbooks: The list of playbooks. There will be a maximum number of items// returned based on the page_size field in the request.Playbooks []*GoogleCloudDialogflowCxV3beta1Playbook `json:"playbooks,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListPlaybooksResponse: The response messagefor Playbooks.ListPlaybooks.

func (GoogleCloudDialogflowCxV3beta1ListPlaybooksResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ListSecuritySettingsResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ListSecuritySettingsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// SecuritySettings: The list of security settings.SecuritySettings []*GoogleCloudDialogflowCxV3beta1SecuritySettings `json:"securitySettings,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListSecuritySettingsResponse: The responsemessage for SecuritySettings.ListSecuritySettings.

func (GoogleCloudDialogflowCxV3beta1ListSecuritySettingsResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse

type GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// SessionEntityTypes: The list of session entity types. There will be a// maximum number of items returned based on the page_size field in the// request.SessionEntityTypes []*GoogleCloudDialogflowCxV3beta1SessionEntityType `json:"sessionEntityTypes,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse: The responsemessage for SessionEntityTypes.ListSessionEntityTypes.

func (GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// TestCaseResults: The list of test case results.TestCaseResults []*GoogleCloudDialogflowCxV3beta1TestCaseResult `json:"testCaseResults,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse: The responsemessage for TestCases.ListTestCaseResults.

func (GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ListTestCasesResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ListTestCasesResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// TestCases: The list of test cases. There will be a maximum number of items// returned based on the page_size field in the request.TestCases []*GoogleCloudDialogflowCxV3beta1TestCase `json:"testCases,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListTestCasesResponse: The response messagefor TestCases.ListTestCases.

func (GoogleCloudDialogflowCxV3beta1ListTestCasesResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ListToolVersionsResponseadded inv0.225.0

type GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ToolVersions: The list of tool versions. There will be a maximum number of// items returned based on the page_size field in the request.ToolVersions []*GoogleCloudDialogflowCxV3beta1ToolVersion `json:"toolVersions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse: The response messagefor Tools.ListToolVersions.

func (GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1ListToolsResponseadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ListToolsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// Tools: The list of Tools. There will be a maximum number of items returned// based on the page_size field in the request.Tools []*GoogleCloudDialogflowCxV3beta1Tool `json:"tools,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListToolsResponse: The response message forTools.ListTools.

func (GoogleCloudDialogflowCxV3beta1ListToolsResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse

type GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// TransitionRouteGroups: The list of transition route groups. There will be a// maximum number of items returned based on the page_size field in the// request. The list may in some cases be empty or contain fewer entries than// page_size even if this isn't the last page.TransitionRouteGroups []*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup `json:"transitionRouteGroups,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse: Theresponse message for TransitionRouteGroups.ListTransitionRouteGroups.

func (GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListVersionsResponse

type GoogleCloudDialogflowCxV3beta1ListVersionsResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// Versions: A list of versions. There will be a maximum number of items// returned based on the page_size field in the request. The list may in some// cases be empty or contain fewer entries than page_size even if this isn't// the last page.Versions []*GoogleCloudDialogflowCxV3beta1Version `json:"versions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListVersionsResponse: The response message forVersions.ListVersions.

func (GoogleCloudDialogflowCxV3beta1ListVersionsResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ListWebhooksResponse

type GoogleCloudDialogflowCxV3beta1ListWebhooksResponse struct {// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// Webhooks: The list of webhooks. There will be a maximum number of items// returned based on the page_size field in the request.Webhooks []*GoogleCloudDialogflowCxV3beta1Webhook `json:"webhooks,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ListWebhooksResponse: The response message forWebhooks.ListWebhooks.

func (GoogleCloudDialogflowCxV3beta1ListWebhooksResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1LlmCalladded inv0.230.0

type GoogleCloudDialogflowCxV3beta1LlmCall struct {// Model: The model of the LLM call.Modelstring `json:"model,omitempty"`// RetrievedExamples: A list of relevant examples used for the LLM prompt.RetrievedExamples []*GoogleCloudDialogflowCxV3beta1LlmCallRetrievedExample `json:"retrievedExamples,omitempty"`// Temperature: The temperature of the LLM call.Temperaturefloat64 `json:"temperature,omitempty"`// TokenCount: The token counts of the LLM call.TokenCount *GoogleCloudDialogflowCxV3beta1LlmCallTokenCount `json:"tokenCount,omitempty"`// ForceSendFields is a list of field names (e.g. "Model") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Model") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LlmCall: Stores metadata of the call of anLLM.

func (GoogleCloudDialogflowCxV3beta1LlmCall)MarshalJSONadded inv0.230.0

func (*GoogleCloudDialogflowCxV3beta1LlmCall)UnmarshalJSONadded inv0.230.0

func (s *GoogleCloudDialogflowCxV3beta1LlmCall) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowCxV3beta1LlmCallRetrievedExampleadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1LlmCallRetrievedExample struct {// ExampleDisplayName: The display name of the example.ExampleDisplayNamestring `json:"exampleDisplayName,omitempty"`// ExampleId: The id of the example.ExampleIdstring `json:"exampleId,omitempty"`// MatchedRetrievalLabel: Optional. The matched retrieval label of this LLM// call.MatchedRetrievalLabelstring `json:"matchedRetrievalLabel,omitempty"`// RetrievalStrategy: Retrieval strategy of the example.//// Possible values://   "RETRIEVAL_STRATEGY_UNSPECIFIED" - Not specified. `DEFAULT` will be used.//   "DEFAULT" - Default retrieval strategy.//   "STATIC" - Static example will always be inserted to the prompt.//   "NEVER" - Example will never be inserted into the prompt.RetrievalStrategystring `json:"retrievalStrategy,omitempty"`// ForceSendFields is a list of field names (e.g. "ExampleDisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExampleDisplayName") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LlmCallRetrievedExample: Relevant example usedfor the LLM prompt.

func (GoogleCloudDialogflowCxV3beta1LlmCallRetrievedExample)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1LlmCallTokenCountadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1LlmCallTokenCount struct {// ConversationContextTokenCount: The number of tokens used for the// conversation history in the prompt.ConversationContextTokenCountint64 `json:"conversationContextTokenCount,omitempty,string"`// ExampleTokenCount: The number of tokens used for the retrieved examples in// the prompt.ExampleTokenCountint64 `json:"exampleTokenCount,omitempty,string"`// TotalInputTokenCount: The total number of tokens used for the input to the// LLM call.TotalInputTokenCountint64 `json:"totalInputTokenCount,omitempty,string"`// TotalOutputTokenCount: The total number of tokens used for the output of the// LLM call.TotalOutputTokenCountint64 `json:"totalOutputTokenCount,omitempty,string"`// ForceSendFields is a list of field names (e.g.// "ConversationContextTokenCount") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationContextTokenCount")// to include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LlmCallTokenCount: Stores token counts of theLLM call.

func (GoogleCloudDialogflowCxV3beta1LlmCallTokenCount)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1LlmModelSettingsadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1LlmModelSettings struct {// Model: The selected LLM model.Modelstring `json:"model,omitempty"`// Parameters: Generative model parameters.Parameters *GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters `json:"parameters,omitempty"`// PromptText: The custom prompt to use.PromptTextstring `json:"promptText,omitempty"`// ForceSendFields is a list of field names (e.g. "Model") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Model") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LlmModelSettings: Settings for LLM models.

func (GoogleCloudDialogflowCxV3beta1LlmModelSettings)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1LlmModelSettingsParametersadded inv0.253.0

type GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters struct {// InputTokenLimit: The input token limit. This setting is currently only// supported by playbooks.//// Possible values://   "INPUT_TOKEN_LIMIT_UNSPECIFIED" - Limit not specified. Treated as// 'INPUT_TOKEN_LIMIT_SHORT'.//   "INPUT_TOKEN_LIMIT_SHORT" - Input token limit up to 8k.//   "INPUT_TOKEN_LIMIT_MEDIUM" - Input token limit up to 32k.//   "INPUT_TOKEN_LIMIT_LONG" - Input token limit up to 100k.InputTokenLimitstring `json:"inputTokenLimit,omitempty"`// OutputTokenLimit: The output token limit. This setting is currently only// supported by playbooks. Only one of output_token_limit and max_output_tokens// is allowed to be set.//// Possible values://   "OUTPUT_TOKEN_LIMIT_UNSPECIFIED" - Limit not specified.//   "OUTPUT_TOKEN_LIMIT_SHORT" - Input token limit up to 512 tokens.//   "OUTPUT_TOKEN_LIMIT_MEDIUM" - Input token limit up to 1k.//   "OUTPUT_TOKEN_LIMIT_LONG" - Input token limit up to 2k.OutputTokenLimitstring `json:"outputTokenLimit,omitempty"`// Temperature: The temperature used for sampling during response generation.// Value ranges from 0 to 1. Temperature controls the degree of randomness in// token selection. Lower temperature means less randomness, while higher// temperature means more randomness. Valid range: [0.0, 1.0]Temperaturefloat64 `json:"temperature,omitempty"`// ForceSendFields is a list of field names (e.g. "InputTokenLimit") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InputTokenLimit") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters: Generative modelparameters to control the model behavior.

func (GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters)MarshalJSONadded inv0.253.0

func (*GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters)UnmarshalJSONadded inv0.253.0

typeGoogleCloudDialogflowCxV3beta1LoadVersionRequest

type GoogleCloudDialogflowCxV3beta1LoadVersionRequest struct {// AllowOverrideAgentResources: This field is used to prevent accidental// overwrite of other agent resources, which can potentially impact other// flow's behavior. If `allow_override_agent_resources` is false, conflicted// agent-level resources will not be overridden (i.e. intents, entities,// webhooks).AllowOverrideAgentResourcesbool `json:"allowOverrideAgentResources,omitempty"`// ForceSendFields is a list of field names (e.g.// "AllowOverrideAgentResources") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowOverrideAgentResources") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LoadVersionRequest: The request message forVersions.LoadVersion.

func (GoogleCloudDialogflowCxV3beta1LoadVersionRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse

type GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse struct {// Environments: Represents a list of snapshots for an environment. Time of the// snapshots is stored in `update_time`.Environments []*GoogleCloudDialogflowCxV3beta1Environment `json:"environments,omitempty"`// NextPageToken: Token to retrieve the next page of results, or empty if there// are no more results in the list.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Environments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Environments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse: The responsemessage for Environments.LookupEnvironmentHistory.

func (GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Match

type GoogleCloudDialogflowCxV3beta1Match struct {// Confidence: The confidence of this match. Values range from 0.0 (completely// uncertain) to 1.0 (completely certain). This value is for informational// purpose only and is only used to help match the best intent within the// classification threshold. This value may change for the same end-user// expression at any time due to a model retraining or change in// implementation.Confidencefloat64 `json:"confidence,omitempty"`// Event: The event that matched the query. Filled for `EVENT`, `NO_MATCH` and// `NO_INPUT` match types.Eventstring `json:"event,omitempty"`// Intent: The Intent that matched the query. Some, not all fields are filled// in this message, including but not limited to: `name` and `display_name`.// Only filled for `INTENT` match type.Intent *GoogleCloudDialogflowCxV3beta1Intent `json:"intent,omitempty"`// MatchType: Type of this Match.//// Possible values://   "MATCH_TYPE_UNSPECIFIED" - Not specified. Should never be used.//   "INTENT" - The query was matched to an intent.//   "DIRECT_INTENT" - The query directly triggered an intent.//   "PARAMETER_FILLING" - The query was used for parameter filling.//   "NO_MATCH" - No match was found for the query.//   "NO_INPUT" - Indicates an empty query.//   "EVENT" - The query directly triggered an event.//   "KNOWLEDGE_CONNECTOR" - The query was matched to a Knowledge Connector// answer.//   "PLAYBOOK" - The query was handled by a `Playbook`.MatchTypestring `json:"matchType,omitempty"`// Parameters: The collection of parameters extracted from the query. Depending// on your protocol or client library language, this is a map, associative// array, symbol table, dictionary, or JSON object composed of a collection of// (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter// name * MapValue type: If parameter's entity type is a composite entity then// use map, otherwise, depending on the parameter value type, it could be one// of string, number, boolean, null, list or map. * MapValue value: If// parameter's entity type is a composite entity then use map from composite// entity property names to property values, otherwise, use parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ResolvedInput: Final text input which was matched during MatchIntent. This// value can be different from original input sent in request because of// spelling correction or other processing.ResolvedInputstring `json:"resolvedInput,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Match: Represents one match result ofMatchIntent.

func (GoogleCloudDialogflowCxV3beta1Match)MarshalJSON

func (*GoogleCloudDialogflowCxV3beta1Match)UnmarshalJSON

func (s *GoogleCloudDialogflowCxV3beta1Match) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowCxV3beta1MatchIntentRequest

type GoogleCloudDialogflowCxV3beta1MatchIntentRequest struct {// PersistParameterChanges: Persist session parameter changes from// `query_params`.PersistParameterChangesbool `json:"persistParameterChanges,omitempty"`// QueryInput: Required. The input specification.QueryInput *GoogleCloudDialogflowCxV3beta1QueryInput `json:"queryInput,omitempty"`// QueryParams: The parameters of this query.QueryParams *GoogleCloudDialogflowCxV3beta1QueryParameters `json:"queryParams,omitempty"`// ForceSendFields is a list of field names (e.g. "PersistParameterChanges") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PersistParameterChanges") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1MatchIntentRequest: Request of MatchIntent.

func (GoogleCloudDialogflowCxV3beta1MatchIntentRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1MatchIntentResponse

type GoogleCloudDialogflowCxV3beta1MatchIntentResponse struct {// CurrentPage: The current Page. Some, not all fields are filled in this// message, including but not limited to `name` and `display_name`.CurrentPage *GoogleCloudDialogflowCxV3beta1Page `json:"currentPage,omitempty"`// Matches: Match results, if more than one, ordered descendingly by the// confidence we have that the particular intent matches the query.Matches []*GoogleCloudDialogflowCxV3beta1Match `json:"matches,omitempty"`// Text: If natural language text was provided as input, this field will// contain a copy of the text.Textstring `json:"text,omitempty"`// Transcript: If natural language speech audio was provided as input, this// field will contain the transcript for the audio.Transcriptstring `json:"transcript,omitempty"`// TriggerEvent: If an event was provided as input, this field will contain a// copy of the event name.TriggerEventstring `json:"triggerEvent,omitempty"`// TriggerIntent: If an intent was provided as input, this field will contain a// copy of the intent identifier. Format:// `projects//locations//agents//intents/`.TriggerIntentstring `json:"triggerIntent,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CurrentPage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrentPage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1MatchIntentResponse: Response of MatchIntent.

func (GoogleCloudDialogflowCxV3beta1MatchIntentResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1NamedMetricadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1NamedMetric struct {// Name: The name of the metric.Namestring `json:"name,omitempty"`// Unit: The unit in which this metric is reported. Follows The Unified Code// for Units of Measure (https://unitsofmeasure.org/ucum.html) standard.Unitstring `json:"unit,omitempty"`// Value: The value of the metric.Value interface{} `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1NamedMetric: A named metric is a metric withname, value and unit.

func (GoogleCloudDialogflowCxV3beta1NamedMetric)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1NluSettings

type GoogleCloudDialogflowCxV3beta1NluSettings struct {// ClassificationThreshold: To filter out false positive results and still get// variety in matched natural language inputs for your agent, you can tune the// machine learning classification threshold. If the returned score value is// less than the threshold value, then a no-match event will be triggered. The// score values range from 0.0 (completely uncertain) to 1.0 (completely// certain). If set to 0.0, the default of 0.3 is used. You can set a separate// classification threshold for the flow in each language enabled for the// agent.ClassificationThresholdfloat64 `json:"classificationThreshold,omitempty"`// ModelTrainingMode: Indicates NLU model training mode.//// Possible values://   "MODEL_TRAINING_MODE_UNSPECIFIED" - Not specified.// `MODEL_TRAINING_MODE_AUTOMATIC` will be used.//   "MODEL_TRAINING_MODE_AUTOMATIC" - NLU model training is automatically// triggered when a flow gets modified. User can also manually trigger model// training in this mode.//   "MODEL_TRAINING_MODE_MANUAL" - User needs to manually trigger NLU model// training. Best for large flows whose models take long time to train.ModelTrainingModestring `json:"modelTrainingMode,omitempty"`// ModelType: Indicates the type of NLU model.//// Possible values://   "MODEL_TYPE_UNSPECIFIED" - Not specified. `MODEL_TYPE_STANDARD` will be// used.//   "MODEL_TYPE_STANDARD" - Use standard NLU model.//   "MODEL_TYPE_ADVANCED" - Use advanced NLU model.ModelTypestring `json:"modelType,omitempty"`// ForceSendFields is a list of field names (e.g. "ClassificationThreshold") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClassificationThreshold") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1NluSettings: Settings related to NLU.

func (GoogleCloudDialogflowCxV3beta1NluSettings)MarshalJSON

func (*GoogleCloudDialogflowCxV3beta1NluSettings)UnmarshalJSON

typeGoogleCloudDialogflowCxV3beta1OutputAudioConfig

type GoogleCloudDialogflowCxV3beta1OutputAudioConfig struct {// AudioEncoding: Required. Audio encoding of the synthesized audio content.//// Possible values://   "OUTPUT_AUDIO_ENCODING_UNSPECIFIED" - Not specified.//   "OUTPUT_AUDIO_ENCODING_LINEAR_16" - Uncompressed 16-bit signed// little-endian samples (Linear PCM). Audio content returned as LINEAR16 also// contains a WAV header. LINT: LEGACY_NAMES//   "OUTPUT_AUDIO_ENCODING_MP3" - MP3 audio at 32kbps.//   "OUTPUT_AUDIO_ENCODING_MP3_64_KBPS" - MP3 audio at 64kbps. LINT:// LEGACY_NAMES//   "OUTPUT_AUDIO_ENCODING_OGG_OPUS" - Opus encoded audio wrapped in an ogg// container. The result will be a file which can be played natively on// Android, and in browsers (at least Chrome and Firefox). The quality of the// encoding is considerably higher than MP3 while using approximately the same// bitrate.//   "OUTPUT_AUDIO_ENCODING_MULAW" - 8-bit samples that compand 14-bit audio// samples using G.711 PCMU/mu-law.//   "OUTPUT_AUDIO_ENCODING_ALAW" - 8-bit samples that compand 13-bit audio// samples using G.711 PCMU/a-law.AudioEncodingstring `json:"audioEncoding,omitempty"`// SampleRateHertz: Optional. The synthesis sample rate (in hertz) for this// audio. If not provided, then the synthesizer will use the default sample// rate based on the audio encoding. If this is different from the voice's// natural sample rate, then the synthesizer will honor this request by// converting to the desired sample rate (which might result in worse audio// quality).SampleRateHertzint64 `json:"sampleRateHertz,omitempty"`// SynthesizeSpeechConfig: Optional. Configuration of how speech should be// synthesized. If not specified, Agent.text_to_speech_settings is applied.SynthesizeSpeechConfig *GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig `json:"synthesizeSpeechConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioEncoding") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioEncoding") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1OutputAudioConfig: Instructs the speechsynthesizer how to generate the output audio content.

func (GoogleCloudDialogflowCxV3beta1OutputAudioConfig)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Page

type GoogleCloudDialogflowCxV3beta1Page struct {// AdvancedSettings: Hierarchical advanced settings for this page. The settings// exposed at the lower level overrides the settings exposed at the higher// level.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// Description: The description of the page. The maximum length is 500// characters.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the page, unique within// the flow.DisplayNamestring `json:"displayName,omitempty"`// EntryFulfillment: The fulfillment to call when the session is entering the// page.EntryFulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"entryFulfillment,omitempty"`// EventHandlers: Handlers associated with the page to handle events such as// webhook errors, no match or no input.EventHandlers []*GoogleCloudDialogflowCxV3beta1EventHandler `json:"eventHandlers,omitempty"`// Form: The form associated with the page, used for collecting parameters// relevant to the page.Form *GoogleCloudDialogflowCxV3beta1Form `json:"form,omitempty"`// KnowledgeConnectorSettings: Optional. Knowledge connector configuration.KnowledgeConnectorSettings *GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings `json:"knowledgeConnectorSettings,omitempty"`// Name: The unique identifier of the page. Required for the Pages.UpdatePage// method. Pages.CreatePage populates the name automatically. Format:// `projects//locations//agents//flows//pages/`.Namestring `json:"name,omitempty"`// TransitionRouteGroups: Ordered list of `TransitionRouteGroups` added to the// page. Transition route groups must be unique within a page. If the page// links both flow-level transition route groups and agent-level transition// route groups, the flow-level ones will have higher priority and will be put// before the agent-level ones. * If multiple transition routes within a page// scope refer to the same intent, then the precedence order is: page's// transition route -> page's transition route group -> flow's transition// routes. * If multiple transition route groups within a page contain the same// intent, then the first group in the ordered list takes precedence.// Format:`projects//locations//agents//flows//transitionRouteGroups/` or// `projects//locations//agents//transitionRouteGroups/` for agent-level// groups.TransitionRouteGroups []string `json:"transitionRouteGroups,omitempty"`// TransitionRoutes: A list of transitions for the transition rules of this// page. They route the conversation to another page in the same flow, or// another flow. When we are in a certain page, the TransitionRoutes are// evaluated in the following order: * TransitionRoutes defined in the page// with intent specified. * TransitionRoutes defined in the transition route// groups with intent specified. * TransitionRoutes defined in flow with intent// specified. * TransitionRoutes defined in the transition route groups with// intent specified. * TransitionRoutes defined in the page with only condition// specified. * TransitionRoutes defined in the transition route groups with// only condition specified.TransitionRoutes []*GoogleCloudDialogflowCxV3beta1TransitionRoute `json:"transitionRoutes,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Page: A Dialogflow CX conversation (session)can be described and visualized as a state machine. The states of a CXsession are represented by pages. For each flow, you define many pages,where your combined pages can handle a complete conversation on the topicsthe flow is designed for. At any given moment, exactly one page is thecurrent page, the current page is considered active, and the flow associatedwith that page is considered active. Every flow has a special start page.When a flow initially becomes active, the start page page becomes thecurrent page. For each conversational turn, the current page will eitherstay the same or transition to another page. You configure each page tocollect information from the end-user that is relevant for theconversational state represented by the page. For more information, see thePage guide (https://cloud.google.com/dialogflow/cx/docs/concept/page).

func (GoogleCloudDialogflowCxV3beta1Page)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1PageInfo

type GoogleCloudDialogflowCxV3beta1PageInfo struct {// CurrentPage: Always present for WebhookRequest. Ignored for WebhookResponse.// The unique identifier of the current page. Format:// `projects//locations//agents//flows//pages/`.CurrentPagestring `json:"currentPage,omitempty"`// DisplayName: Always present for WebhookRequest. Ignored for WebhookResponse.// The display name of the current page.DisplayNamestring `json:"displayName,omitempty"`// FormInfo: Optional for both WebhookRequest and WebhookResponse. Information// about the form.FormInfo *GoogleCloudDialogflowCxV3beta1PageInfoFormInfo `json:"formInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "CurrentPage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CurrentPage") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PageInfo: Represents page informationcommunicated to and from the webhook.

func (GoogleCloudDialogflowCxV3beta1PageInfo)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1PageInfoFormInfo

type GoogleCloudDialogflowCxV3beta1PageInfoFormInfo struct {// ParameterInfo: Optional for both WebhookRequest and WebhookResponse. The// parameters contained in the form. Note that the webhook cannot add or remove// any form parameter.ParameterInfo []*GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo `json:"parameterInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "ParameterInfo") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ParameterInfo") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PageInfoFormInfo: Represents form information.

func (GoogleCloudDialogflowCxV3beta1PageInfoFormInfo)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo

type GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo struct {// DisplayName: Always present for WebhookRequest. Required for// WebhookResponse. The human-readable name of the parameter, unique within the// form. This field cannot be modified by the webhook.DisplayNamestring `json:"displayName,omitempty"`// JustCollected: Optional for WebhookRequest. Ignored for WebhookResponse.// Indicates if the parameter value was just collected on the last conversation// turn.JustCollectedbool `json:"justCollected,omitempty"`// Required: Optional for both WebhookRequest and WebhookResponse. Indicates// whether the parameter is required. Optional parameters will not trigger// prompts; however, they are filled if the user specifies them. Required// parameters must be filled before form filling concludes.Requiredbool `json:"required,omitempty"`// State: Always present for WebhookRequest. Required for WebhookResponse. The// state of the parameter. This field can be set to INVALID by the webhook to// invalidate the parameter; other values set by the webhook will be ignored.//// Possible values://   "PARAMETER_STATE_UNSPECIFIED" - Not specified. This value should be never// used.//   "EMPTY" - Indicates that the parameter does not have a value.//   "INVALID" - Indicates that the parameter value is invalid. This field can// be used by the webhook to invalidate the parameter and ask the server to// collect it from the user again.//   "FILLED" - Indicates that the parameter has a value.Statestring `json:"state,omitempty"`// Value: Optional for both WebhookRequest and WebhookResponse. The value of// the parameter. This field can be set by the webhook to change the parameter// value.Value interface{} `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo: Representsparameter information.

func (GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ParameterDefinitionadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ParameterDefinition struct {// Description: Human-readable description of the parameter. Limited to 300// characters.Descriptionstring `json:"description,omitempty"`// Name: Required. Name of parameter.Namestring `json:"name,omitempty"`// Type: Type of parameter.//// Possible values://   "PARAMETER_TYPE_UNSPECIFIED" - Not specified. No validation will be// performed.//   "STRING" - Represents any string value.//   "NUMBER" - Represents any number value.//   "BOOLEAN" - Represents a boolean value.//   "NULL" - Represents a null value.//   "OBJECT" - Represents any object value.//   "LIST" - Represents a repeated value.Typestring `json:"type,omitempty"`// TypeSchema: Optional. Type schema of parameter.TypeSchema *GoogleCloudDialogflowCxV3beta1TypeSchema `json:"typeSchema,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ParameterDefinition: Defines the properties ofa parameter. Used to define parameters used in the agent and the input /output parameters for each fulfillment.

func (GoogleCloudDialogflowCxV3beta1ParameterDefinition)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1Phraseadded inv0.154.0

type GoogleCloudDialogflowCxV3beta1Phrase struct {// Text: Required. Text input which can be used for prompt or banned phrases.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Phrase: Text input which can be used forprompt or banned phrases.

func (GoogleCloudDialogflowCxV3beta1Phrase)MarshalJSONadded inv0.154.0

typeGoogleCloudDialogflowCxV3beta1Playbookadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1Playbook struct {// CodeBlock: Optional. The playbook's scoped code block, which may implement// handlers and actions.CodeBlock *GoogleCloudDialogflowCxV3beta1CodeBlock `json:"codeBlock,omitempty"`// CreateTime: Output only. The timestamp of initial playbook creation.CreateTimestring `json:"createTime,omitempty"`// DisplayName: Required. The human-readable name of the playbook, unique// within an agent.DisplayNamestring `json:"displayName,omitempty"`// Goal: Required. High level description of the goal the playbook intend to// accomplish. A goal should be concise since it's visible to other playbooks// that may reference this playbook.Goalstring `json:"goal,omitempty"`// Handlers: Optional. A list of registered handlers to execute based on the// specified triggers.Handlers []*GoogleCloudDialogflowCxV3beta1Handler `json:"handlers,omitempty"`// InlineActions: Optional. Output only. Names of inline actions scoped to this// playbook. These actions are in addition to those belonging to referenced// tools, child playbooks, and flows, e.g. actions that are defined in the// playbook's code block.InlineActions []string `json:"inlineActions,omitempty"`// InputParameterDefinitions: Optional. Defined structured input parameters for// this playbook.InputParameterDefinitions []*GoogleCloudDialogflowCxV3beta1ParameterDefinition `json:"inputParameterDefinitions,omitempty"`// Instruction: Instruction to accomplish target goal.Instruction *GoogleCloudDialogflowCxV3beta1PlaybookInstruction `json:"instruction,omitempty"`// LlmModelSettings: Optional. Llm model settings for the playbook.LlmModelSettings *GoogleCloudDialogflowCxV3beta1LlmModelSettings `json:"llmModelSettings,omitempty"`// Name: The unique identifier of the playbook. Format:// `projects//locations//agents//playbooks/`.Namestring `json:"name,omitempty"`// OutputParameterDefinitions: Optional. Defined structured output parameters// for this playbook.OutputParameterDefinitions []*GoogleCloudDialogflowCxV3beta1ParameterDefinition `json:"outputParameterDefinitions,omitempty"`// PlaybookType: Optional. Type of the playbook.//// Possible values://   "PLAYBOOK_TYPE_UNSPECIFIED" - Unspecified type. Default to TASK.//   "TASK" - Task playbook.//   "ROUTINE" - Routine playbook.PlaybookTypestring `json:"playbookType,omitempty"`// ReferencedFlows: Output only. The resource name of flows referenced by the// current playbook in the instructions.ReferencedFlows []string `json:"referencedFlows,omitempty"`// ReferencedPlaybooks: Output only. The resource name of other playbooks// referenced by the current playbook in the instructions.ReferencedPlaybooks []string `json:"referencedPlaybooks,omitempty"`// ReferencedTools: Optional. The resource name of tools referenced by the// current playbook in the instructions. If not provided explicitly, they are// will be implied using the tool being referenced in goal and steps.ReferencedTools []string `json:"referencedTools,omitempty"`// SpeechSettings: Optional. Playbook level Settings for speech to text// detection.SpeechSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings `json:"speechSettings,omitempty"`// TokenCount: Output only. Estimated number of tokes current playbook takes// when sent to the LLM.TokenCountint64 `json:"tokenCount,omitempty,string"`// UpdateTime: Output only. Last time the playbook version was updated.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CodeBlock") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CodeBlock") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Playbook: Playbook is the basic building blockto instruct the LLM how to execute a certain task. A playbook consists of agoal to accomplish, an optional list of step by step instructions (the stepinstruction may refers to name of the custom or default plugin tools to use)to perform the task, a list of contextual input data to be passed in at thebeginning of the invoked, and a list of output parameters to store theplaybook result.

func (GoogleCloudDialogflowCxV3beta1Playbook)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookImportStrategyadded inv0.212.0

type GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy struct {// MainPlaybookImportStrategy: Optional. Specifies the import strategy used// when resolving conflicts with the main playbook. If not specified,// 'CREATE_NEW' is assumed.//// Possible values://   "IMPORT_STRATEGY_UNSPECIFIED" - Unspecified. Treated as 'CREATE_NEW'.//   "IMPORT_STRATEGY_CREATE_NEW" - Create a new resource with a numeric suffix// appended to the end of the existing display name.//   "IMPORT_STRATEGY_REPLACE" - Replace existing resource with incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_KEEP" - Keep existing resource and discard incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_MERGE" - Combine existing and incoming resources when a// conflict is encountered.//   "IMPORT_STRATEGY_THROW_ERROR" - Throw error if a conflict is encountered.MainPlaybookImportStrategystring `json:"mainPlaybookImportStrategy,omitempty"`// NestedResourceImportStrategy: Optional. Specifies the import strategy used// when resolving referenced playbook/flow conflicts. If not specified,// 'CREATE_NEW' is assumed.//// Possible values://   "IMPORT_STRATEGY_UNSPECIFIED" - Unspecified. Treated as 'CREATE_NEW'.//   "IMPORT_STRATEGY_CREATE_NEW" - Create a new resource with a numeric suffix// appended to the end of the existing display name.//   "IMPORT_STRATEGY_REPLACE" - Replace existing resource with incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_KEEP" - Keep existing resource and discard incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_MERGE" - Combine existing and incoming resources when a// conflict is encountered.//   "IMPORT_STRATEGY_THROW_ERROR" - Throw error if a conflict is encountered.NestedResourceImportStrategystring `json:"nestedResourceImportStrategy,omitempty"`// ToolImportStrategy: Optional. Specifies the import strategy used when// resolving tool conflicts. If not specified, 'CREATE_NEW' is assumed. This// will be applied after the main playbook and nested resource import// strategies, meaning if the playbook that references the tool is skipped, the// tool will also be skipped.//// Possible values://   "IMPORT_STRATEGY_UNSPECIFIED" - Unspecified. Treated as 'CREATE_NEW'.//   "IMPORT_STRATEGY_CREATE_NEW" - Create a new resource with a numeric suffix// appended to the end of the existing display name.//   "IMPORT_STRATEGY_REPLACE" - Replace existing resource with incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_KEEP" - Keep existing resource and discard incoming// resource in the content to be imported.//   "IMPORT_STRATEGY_MERGE" - Combine existing and incoming resources when a// conflict is encountered.//   "IMPORT_STRATEGY_THROW_ERROR" - Throw error if a conflict is encountered.ToolImportStrategystring `json:"toolImportStrategy,omitempty"`// ForceSendFields is a list of field names (e.g. "MainPlaybookImportStrategy")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MainPlaybookImportStrategy") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy: The playbook importstrategy used for resource conflict resolution associated with anImportPlaybookRequest.

func (GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy)MarshalJSONadded inv0.212.0

typeGoogleCloudDialogflowCxV3beta1PlaybookInputadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookInput struct {// ActionParameters: Optional. A list of input parameters for the action.ActionParametersgoogleapi.RawMessage `json:"actionParameters,omitempty"`// PrecedingConversationSummary: Optional. Summary string of the preceding// conversation for the child playbook invocation.PrecedingConversationSummarystring `json:"precedingConversationSummary,omitempty"`// ForceSendFields is a list of field names (e.g. "ActionParameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ActionParameters") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookInput: Input of the playbook.

func (GoogleCloudDialogflowCxV3beta1PlaybookInput)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookInstructionadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookInstruction struct {// Guidelines: General guidelines for the playbook. These are unstructured// instructions that are not directly part of the goal, e.g. "Always be// polite". It's valid for this text to be long and used instead of steps// altogether.Guidelinesstring `json:"guidelines,omitempty"`// Steps: Ordered list of step by step execution instructions to accomplish// target goal.Steps []*GoogleCloudDialogflowCxV3beta1PlaybookStep `json:"steps,omitempty"`// ForceSendFields is a list of field names (e.g. "Guidelines") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Guidelines") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookInstruction: Message of theInstruction of the playbook.

func (GoogleCloudDialogflowCxV3beta1PlaybookInstruction)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookInvocationadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookInvocation struct {// DisplayName: Output only. The display name of the playbook.DisplayNamestring `json:"displayName,omitempty"`// Playbook: Required. The unique identifier of the playbook. Format:// `projects//locations//agents//playbooks/`.Playbookstring `json:"playbook,omitempty"`// PlaybookInput: Optional. Input of the child playbook invocation.PlaybookInput *GoogleCloudDialogflowCxV3beta1PlaybookInput `json:"playbookInput,omitempty"`// PlaybookOutput: Optional. Output of the child playbook invocation.PlaybookOutput *GoogleCloudDialogflowCxV3beta1PlaybookOutput `json:"playbookOutput,omitempty"`// PlaybookState: Required. Playbook invocation's output state.//// Possible values://   "OUTPUT_STATE_UNSPECIFIED" - Unspecified output.//   "OUTPUT_STATE_OK" - Succeeded.//   "OUTPUT_STATE_CANCELLED" - Cancelled.//   "OUTPUT_STATE_FAILED" - Failed.//   "OUTPUT_STATE_ESCALATED" - Escalated.//   "OUTPUT_STATE_PENDING" - Pending.PlaybookStatestring `json:"playbookState,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookInvocation: Stores metadata of theinvocation of a child playbook. Playbook invocation actions enter the childplaybook.

func (GoogleCloudDialogflowCxV3beta1PlaybookInvocation)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookOutputadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookOutput struct {// ActionParameters: Optional. A Struct object of output parameters for the// action.ActionParametersgoogleapi.RawMessage `json:"actionParameters,omitempty"`// ExecutionSummary: Optional. Summary string of the execution result of the// child playbook.ExecutionSummarystring `json:"executionSummary,omitempty"`// State: End state of the playbook.//// Possible values://   "STATE_UNSPECIFIED" - Unspecified state.//   "OK" - Playbook succeeded.//   "CANCELLED" - Playbook cancelled.//   "FAILED" - Playbook failed.//   "ESCALATED" - Playbook failed due to escalation.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "ActionParameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ActionParameters") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookOutput: Output of the playbook.

func (GoogleCloudDialogflowCxV3beta1PlaybookOutput)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookStepadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookStep struct {// Steps: Sub-processing needed to execute the current step.Steps []*GoogleCloudDialogflowCxV3beta1PlaybookStep `json:"steps,omitempty"`// Text: Step instruction in text format.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Steps") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Steps") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookStep: Message of single stepexecution.

func (GoogleCloudDialogflowCxV3beta1PlaybookStep)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1PlaybookTransitionadded inv0.227.0

type GoogleCloudDialogflowCxV3beta1PlaybookTransition struct {// DisplayName: Output only. The display name of the playbook.DisplayNamestring `json:"displayName,omitempty"`// InputActionParameters: A list of input parameters for the action.InputActionParametersgoogleapi.RawMessage `json:"inputActionParameters,omitempty"`// Playbook: Required. The unique identifier of the playbook. Format:// `projects//locations//agents//playbooks/`.Playbookstring `json:"playbook,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookTransition: Stores metadata of thetransition to another target playbook. Playbook transition actions exit thecaller playbook and enter the target playbook.

func (GoogleCloudDialogflowCxV3beta1PlaybookTransition)MarshalJSONadded inv0.227.0

typeGoogleCloudDialogflowCxV3beta1PlaybookVersionadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1PlaybookVersion struct {// Description: Optional. The description of the playbook version.Descriptionstring `json:"description,omitempty"`// Examples: Output only. Snapshot of the examples belonging to the playbook// when the playbook version is created.Examples []*GoogleCloudDialogflowCxV3beta1Example `json:"examples,omitempty"`// Name: The unique identifier of the playbook version. Format:// `projects//locations//agents//playbooks//versions/`.Namestring `json:"name,omitempty"`// Playbook: Output only. Snapshot of the playbook when the playbook version is// created.Playbook *GoogleCloudDialogflowCxV3beta1Playbook `json:"playbook,omitempty"`// UpdateTime: Output only. Last time the playbook version was created or// modified.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1PlaybookVersion: Playbook version is asnapshot of the playbook at certain timestamp.

func (GoogleCloudDialogflowCxV3beta1PlaybookVersion)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1QueryInput

type GoogleCloudDialogflowCxV3beta1QueryInput struct {// Audio: The natural language speech audio to be processed.Audio *GoogleCloudDialogflowCxV3beta1AudioInput `json:"audio,omitempty"`// Dtmf: The DTMF event to be handled.Dtmf *GoogleCloudDialogflowCxV3beta1DtmfInput `json:"dtmf,omitempty"`// Event: The event to be triggered.Event *GoogleCloudDialogflowCxV3beta1EventInput `json:"event,omitempty"`// Intent: The intent to be triggered.Intent *GoogleCloudDialogflowCxV3beta1IntentInput `json:"intent,omitempty"`// LanguageCode: Required. The language of the input. See Language Support// (https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list// of the currently supported language codes. Note that queries in the same// session do not necessarily need to specify the same language.LanguageCodestring `json:"languageCode,omitempty"`// Text: The natural language text to be processed.Text *GoogleCloudDialogflowCxV3beta1TextInput `json:"text,omitempty"`// ToolCallResult: The results of a tool executed by the client.ToolCallResult *GoogleCloudDialogflowCxV3beta1ToolCallResult `json:"toolCallResult,omitempty"`// ForceSendFields is a list of field names (e.g. "Audio") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Audio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1QueryInput: Represents the query input. It cancontain one of: 1. A conversational query in the form of text. 2. An intentquery that specifies which intent to trigger. 3. Natural language speechaudio to be processed. 4. An event to be triggered. 5. DTMF digits to invokean intent and fill in parameter value. 6. The results of a tool executed bythe client.

func (GoogleCloudDialogflowCxV3beta1QueryInput)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1QueryParameters

type GoogleCloudDialogflowCxV3beta1QueryParameters struct {// AnalyzeQueryTextSentiment: Configures whether sentiment analysis should be// performed. If not provided, sentiment analysis is not performed.AnalyzeQueryTextSentimentbool `json:"analyzeQueryTextSentiment,omitempty"`// Channel: The channel which this query is for. If specified, only the// ResponseMessage associated with the channel will be returned. If no// ResponseMessage is associated with the channel, it falls back to the// ResponseMessage with unspecified channel. If unspecified, the// ResponseMessage with unspecified channel will be returned.Channelstring `json:"channel,omitempty"`// CurrentPage: The unique identifier of the page to override the current page// in the session. Format: `projects//locations//agents//flows//pages/`. If// `current_page` is specified, the previous state of the session will be// ignored by Dialogflow, including the previous page and the previous session// parameters. In most cases, current_page and parameters should be configured// together to direct a session to a specific state.CurrentPagestring `json:"currentPage,omitempty"`// CurrentPlaybook: Optional. The unique identifier of the playbook to start or// continue the session with. If `current_playbook` is specified, the previous// state of the session will be ignored by Dialogflow. Format:// `projects//locations//agents//playbooks/`.CurrentPlaybookstring `json:"currentPlaybook,omitempty"`// DisableWebhook: Whether to disable webhook calls for this request.DisableWebhookbool `json:"disableWebhook,omitempty"`// EndUserMetadata: Optional. Information about the end-user to improve the// relevance and accuracy of generative answers. This will be interpreted and// used by a language model, so, for good results, the data should be// self-descriptive, and in a simple structure. Example: “`json {// "subscription plan": "Business Premium Plus", "devices owned": [ {"model":// "Google Pixel 7"}, {"model": "Google Pixel Tablet"} ] } “`EndUserMetadatagoogleapi.RawMessage `json:"endUserMetadata,omitempty"`// FlowVersions: A list of flow versions to override for the request. Format:// `projects//locations//agents//flows//versions/`. If version 1 of flow X is// included in this list, the traffic of flow X will go through version 1// regardless of the version configuration in the environment. Each flow can// have at most one version specified in this list.FlowVersions []string `json:"flowVersions,omitempty"`// GeoLocation: The geo location of this conversational query.GeoLocation *GoogleTypeLatLng `json:"geoLocation,omitempty"`// LlmModelSettings: Optional. Use the specified LLM model settings for// processing the request.LlmModelSettings *GoogleCloudDialogflowCxV3beta1LlmModelSettings `json:"llmModelSettings,omitempty"`// ParameterScope: Scope for the parameters. If not specified, parameters will// be treated as session parameters. Parameters with custom scope will not be// put into session parameters. You can reference the parameters with custom// scope in the agent with the following format:// $parameter-scope.params.parameter-id.ParameterScopestring `json:"parameterScope,omitempty"`// Parameters: Additional parameters to be put into session parameters. To// remove a parameter from the session, clients should explicitly set the// parameter value to null. You can reference the session parameters in the// agent with the following format: $session.params.parameter-id. Depending on// your protocol or client library language, this is a map, associative array,// symbol table, dictionary, or JSON object composed of a collection of// (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter// name * MapValue type: If parameter's entity type is a composite entity then// use map, otherwise, depending on the parameter value type, it could be one// of string, number, boolean, null, list or map. * MapValue value: If// parameter's entity type is a composite entity then use map from composite// entity property names to property values, otherwise, use parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// Payload: This field can be used to pass custom data into the webhook// associated with the agent. Arbitrary JSON objects are supported. Some// integrations that query a Dialogflow agent may provide additional// information in the payload. In particular, for the Dialogflow Phone Gateway// integration, this field has the form: “` { "telephony": { "caller_id":// "+18558363987" } } “`Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// PopulateDataStoreConnectionSignals: Optional. If set to true and data stores// are involved in serving the request then// DetectIntentResponse.query_result.data_store_connection_signals will be// filled with data that can help evaluations.PopulateDataStoreConnectionSignalsbool `json:"populateDataStoreConnectionSignals,omitempty"`// SearchConfig: Optional. Search configuration for UCS search queries.SearchConfig *GoogleCloudDialogflowCxV3beta1SearchConfig `json:"searchConfig,omitempty"`// SessionEntityTypes: Additional session entity types to replace or extend// developer entity types with. The entity synonyms apply to all languages and// persist for the session of this query.SessionEntityTypes []*GoogleCloudDialogflowCxV3beta1SessionEntityType `json:"sessionEntityTypes,omitempty"`// SessionTtl: Optional. Configure lifetime of the Dialogflow session. By// default, a Dialogflow session remains active and its data is stored for 30// minutes after the last request is sent for the session. This value should be// no longer than 1 day.SessionTtlstring `json:"sessionTtl,omitempty"`// TimeZone: The time zone of this conversational query from the time zone// database (https://www.iana.org/time-zones), e.g., America/New_York,// Europe/Paris. If not provided, the time zone specified in the agent is used.TimeZonestring `json:"timeZone,omitempty"`// WebhookHeaders: This field can be used to pass HTTP headers for a webhook// call. These headers will be sent to webhook along with the headers that have// been configured through Dialogflow web console. The headers defined within// this field will overwrite the headers configured through Dialogflow console// if there is a conflict. Header names are case-insensitive. Google's// specified headers are not allowed. Including: "Host", "Content-Length",// "Connection", "From", "User-Agent", "Accept-Encoding", "If-Modified-Since",// "If-None-Match", "X-Forwarded-For", etc.WebhookHeaders map[string]string `json:"webhookHeaders,omitempty"`// ForceSendFields is a list of field names (e.g. "AnalyzeQueryTextSentiment")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnalyzeQueryTextSentiment") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1QueryParameters: Represents the parameters ofa conversational query.

func (GoogleCloudDialogflowCxV3beta1QueryParameters)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1QueryResult

type GoogleCloudDialogflowCxV3beta1QueryResult struct {// AdvancedSettings: Returns the current advanced settings including IVR// settings. Even though the operations configured by these settings are// performed by Dialogflow, the client may need to perform special logic at the// moment. For example, if Dialogflow exports audio to Google Cloud Storage,// then the client may need to wait for the resulting object to appear in the// bucket before proceeding.AdvancedSettings *GoogleCloudDialogflowCxV3beta1AdvancedSettings `json:"advancedSettings,omitempty"`// AllowAnswerFeedback: Indicates whether the Thumbs up/Thumbs down rating// controls are need to be shown for the response in the Dialogflow Messenger// widget.AllowAnswerFeedbackbool `json:"allowAnswerFeedback,omitempty"`// CurrentFlow: The current Flow. Some, not all fields are filled in this// message, including but not limited to `name` and `display_name`.CurrentFlow *GoogleCloudDialogflowCxV3beta1Flow `json:"currentFlow,omitempty"`// CurrentPage: The current Page. Some, not all fields are filled in this// message, including but not limited to `name` and `display_name`.CurrentPage *GoogleCloudDialogflowCxV3beta1Page `json:"currentPage,omitempty"`// DataStoreConnectionSignals: Optional. Data store connection feature output// signals. Filled only when data stores are involved in serving the query.DataStoreConnectionSignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals `json:"dataStoreConnectionSignals,omitempty"`// DiagnosticInfo: The free-form diagnostic info. For example, this field could// contain webhook call latency. The fields of this data can change without// notice, so you should not write code that depends on its structure. One of// the fields is called "Alternative Matched Intents", which may aid with// debugging. The following describes these intent results: - The list is empty// if no intent was matched to end-user input. - Only intents that are// referenced in the currently active flow are included. - The matched intent// is included. - Other intents that could have matched end-user input, but did// not match because they are referenced by intent routes that are out of scope// (https://cloud.google.com/dialogflow/cx/docs/concept/handler#scope), are// included. - Other intents referenced by intent routes in scope that matched// end-user input, but had a lower confidence score.DiagnosticInfogoogleapi.RawMessage `json:"diagnosticInfo,omitempty"`// Dtmf: If a DTMF was provided as input, this field will contain a copy of the// DtmfInput.Dtmf *GoogleCloudDialogflowCxV3beta1DtmfInput `json:"dtmf,omitempty"`// GenerativeInfo: The information of a query if handled by generative agent// resources.GenerativeInfo *GoogleCloudDialogflowCxV3beta1GenerativeInfo `json:"generativeInfo,omitempty"`// Intent: The Intent that matched the conversational query. Some, not all// fields are filled in this message, including but not limited to: `name` and// `display_name`. This field is deprecated, please use QueryResult.match// instead.Intent *GoogleCloudDialogflowCxV3beta1Intent `json:"intent,omitempty"`// IntentDetectionConfidence: The intent detection confidence. Values range// from 0.0 (completely uncertain) to 1.0 (completely certain). This value is// for informational purpose only and is only used to help match the best// intent within the classification threshold. This value may change for the// same end-user expression at any time due to a model retraining or change in// implementation. This field is deprecated, please use QueryResult.match// instead.IntentDetectionConfidencefloat64 `json:"intentDetectionConfidence,omitempty"`// LanguageCode: The language that was triggered during intent detection. See// Language Support// (https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list// of the currently supported language codes.LanguageCodestring `json:"languageCode,omitempty"`// Match: Intent match result, could be an intent or an event.Match *GoogleCloudDialogflowCxV3beta1Match `json:"match,omitempty"`// Parameters: The collected session parameters. Depending on your protocol or// client library language, this is a map, associative array, symbol table,// dictionary, or JSON object composed of a collection of (MapKey, MapValue)// pairs: * MapKey type: string * MapKey value: parameter name * MapValue type:// If parameter's entity type is a composite entity then use map, otherwise,// depending on the parameter value type, it could be one of string, number,// boolean, null, list or map. * MapValue value: If parameter's entity type is// a composite entity then use map from composite entity property names to// property values, otherwise, use parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ResponseMessages: The list of rich messages returned to the client.// Responses vary from simple text messages to more sophisticated, structured// payloads used to drive complex logic.ResponseMessages []*GoogleCloudDialogflowCxV3beta1ResponseMessage `json:"responseMessages,omitempty"`// SentimentAnalysisResult: The sentiment analyss result, which depends on// `analyze_query_text_sentiment`, specified in the request.SentimentAnalysisResult *GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult `json:"sentimentAnalysisResult,omitempty"`// Text: If natural language text was provided as input, this field will// contain a copy of the text.Textstring `json:"text,omitempty"`// Transcript: If natural language speech audio was provided as input, this// field will contain the transcript for the audio.Transcriptstring `json:"transcript,omitempty"`// TriggerEvent: If an event was provided as input, this field will contain the// name of the event.TriggerEventstring `json:"triggerEvent,omitempty"`// TriggerIntent: If an intent was provided as input, this field will contain a// copy of the intent identifier. Format:// `projects//locations//agents//intents/`.TriggerIntentstring `json:"triggerIntent,omitempty"`// WebhookDisplayNames: The list of webhook display names in the order of call// sequence.WebhookDisplayNames []string `json:"webhookDisplayNames,omitempty"`// WebhookIds: The list of webhook ids in the order of call sequence.WebhookIds []string `json:"webhookIds,omitempty"`// WebhookLatencies: The list of webhook latencies in the order of call// sequence.WebhookLatencies []string `json:"webhookLatencies,omitempty"`// WebhookPayloads: The list of webhook payload in WebhookResponse.payload, in// the order of call sequence. If some webhook call fails or doesn't return any// payload, an empty `Struct` would be used instead.WebhookPayloads []googleapi.RawMessage `json:"webhookPayloads,omitempty"`// WebhookStatuses: The list of webhook call status in the order of call// sequence.WebhookStatuses []*GoogleRpcStatus `json:"webhookStatuses,omitempty"`// WebhookTags: The list of webhook tags in the order of call sequence.WebhookTags []string `json:"webhookTags,omitempty"`// ForceSendFields is a list of field names (e.g. "AdvancedSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AdvancedSettings") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1QueryResult: Represents the result of aconversational query.

func (GoogleCloudDialogflowCxV3beta1QueryResult)MarshalJSON

func (*GoogleCloudDialogflowCxV3beta1QueryResult)UnmarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResourceNameadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ResourceName struct {// DisplayName: Display name.DisplayNamestring `json:"displayName,omitempty"`// Name: Name.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResourceName: Resource name and display name.

func (GoogleCloudDialogflowCxV3beta1ResourceName)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ResponseMessage

type GoogleCloudDialogflowCxV3beta1ResponseMessage struct {// Channel: The channel which the response is associated with. Clients can// specify the channel via QueryParameters.channel, and only associated channel// response will be returned.Channelstring `json:"channel,omitempty"`// ConversationSuccess: Indicates that the conversation succeeded.ConversationSuccess *GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess `json:"conversationSuccess,omitempty"`// EndInteraction: Output only. A signal that indicates the interaction with// the Dialogflow agent has ended. This message is generated by Dialogflow only// when the conversation reaches `END_SESSION` page. It is not supposed to be// defined by the user. It's guaranteed that there is at most one such message// in each response.EndInteraction *GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction `json:"endInteraction,omitempty"`// KnowledgeInfoCard: Represents info card for knowledge answers, to be better// rendered in Dialogflow Messenger.KnowledgeInfoCard *GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard `json:"knowledgeInfoCard,omitempty"`// LiveAgentHandoff: Hands off conversation to a human agent.LiveAgentHandoff *GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff `json:"liveAgentHandoff,omitempty"`// MixedAudio: Output only. An audio response message composed of both the// synthesized Dialogflow agent responses and responses defined via play_audio.// This message is generated by Dialogflow only and not supposed to be defined// by the user.MixedAudio *GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio `json:"mixedAudio,omitempty"`// OutputAudioText: A text or ssml response that is preferentially used for TTS// output audio synthesis, as described in the comment on the ResponseMessage// message.OutputAudioText *GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText `json:"outputAudioText,omitempty"`// Payload: Returns a response containing a custom, platform-specific payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// PlayAudio: Signal that the client should play an audio clip hosted at a// client-specific URI. Dialogflow uses this to construct mixed_audio. However,// Dialogflow itself does not try to read or process the URI in any way.PlayAudio *GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio `json:"playAudio,omitempty"`// TelephonyTransferCall: A signal that the client should transfer the phone// call connected to this agent to a third-party endpoint.TelephonyTransferCall *GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall `json:"telephonyTransferCall,omitempty"`// Text: Returns a text response.Text *GoogleCloudDialogflowCxV3beta1ResponseMessageText `json:"text,omitempty"`// ToolCall: Returns the definition of a tool call that should be executed by// the client.ToolCall *GoogleCloudDialogflowCxV3beta1ToolCall `json:"toolCall,omitempty"`// ForceSendFields is a list of field names (e.g. "Channel") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Channel") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessage: Represents a response messagethat can be returned by a conversational agent. Response messages are alsoused for output audio synthesis. The approach is as follows: * If at leastone OutputAudioText response is present, then all OutputAudioText responsesare linearly concatenated, and the result is used for output audiosynthesis. * If the OutputAudioText responses are a mixture of text andSSML, then the concatenated result is treated as SSML; otherwise, the resultis treated as either text or SSML as appropriate. The agent designer shouldideally use either text or SSML consistently throughout the bot design. *Otherwise, all Text responses are linearly concatenated, and the result isused for output audio synthesis. This approach allows for more sophisticateduser experience scenarios, where the text displayed to the user may differfrom what is heard.

func (GoogleCloudDialogflowCxV3beta1ResponseMessage)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

type GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess struct {// Metadata: Custom metadata. Dialogflow doesn't impose any structure on this.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess: Indicatesthat the conversation succeeded, i.e., the bot handled the issue that thecustomer talked to it about. Dialogflow only uses this to determine whichconversations should be counted as successful and doesn't process themetadata in this message in any way. Note that Dialogflow also considersconversations that get to the conversation end page as successful even ifthey don't return ConversationSuccess. You may set this, for example: * Inthe entry_fulfillment of a Page if entering the page indicates that theconversation succeeded. * In a webhook response when you determine that youhandled the customer issue.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction

type GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction struct {}

GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction: Indicates thatinteraction with the Dialogflow agent has ended. This message is generatedby Dialogflow only and not supposed to be defined by the user.

typeGoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard struct {}

GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard: Representsinfo card response. If the response contains generative knowledgeprediction, Dialogflow will return a payload with Infobot Messengercompatible info card. Otherwise, the info card response is skipped.

typeGoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

type GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff struct {// Metadata: Custom metadata for your handoff procedure. Dialogflow doesn't// impose any structure on this.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff: Indicatesthat the conversation should be handed off to a live agent. Dialogflow onlyuses this to determine which conversations were handed off to a human agentfor measurement purposes. What else to do with this signal is up to you andyour handoff procedures. You may set this, for example: * In theentry_fulfillment of a Page if entering the page indicates something wentextremely wrong in the conversation. * In a webhook response when youdetermine that the customer issue can only be handled by a human.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio

type GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio struct {// Segments: Segments this audio response is composed of.Segments []*GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment `json:"segments,omitempty"`// ForceSendFields is a list of field names (e.g. "Segments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Segments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio: Represents an audiomessage that is composed of both segments synthesized from the Dialogflowagent prompts and ones hosted externally at the specified URIs. The externalURIs are specified via play_audio. This message is generated by Dialogflowonly and not supposed to be defined by the user.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment

type GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment struct {// AllowPlaybackInterruption: Output only. Whether the playback of this segment// can be interrupted by the end user's speech and the client should then start// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Audio: Raw audio synthesized from the Dialogflow agent's response using the// output config specified in the request.Audiostring `json:"audio,omitempty"`// Uri: Client-specific URI that points to an audio clip accessible to the// client. Dialogflow does not impose any validation on it.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment: Representsone segment of audio.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

type GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Ssml: The SSML text to be synthesized. For more information, see SSML// (/speech/text-to-speech/docs/ssml).Ssmlstring `json:"ssml,omitempty"`// Text: The raw text to be synthesized.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText: A text or ssmlresponse that is preferentially used for TTS output audio synthesis, asdescribed in the comment on the ResponseMessage message.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

type GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// AudioUri: Required. URI of the audio clip. Dialogflow does not impose any// validation on this value. It is specific to the client that reads it.AudioUristring `json:"audioUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio: Specifies an audioclip to be played by the client as part of the response.

func (GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCalladded inv0.62.0

type GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall struct {// PhoneNumber: Transfer the call to a phone number in E.164 format// (https://en.wikipedia.org/wiki/E.164).PhoneNumberstring `json:"phoneNumber,omitempty"`// ForceSendFields is a list of field names (e.g. "PhoneNumber") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PhoneNumber") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall:Represents the signal that telles the client to transfer the phone callconnected to the agent to a third-party endpoint.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall)MarshalJSONadded inv0.62.0

typeGoogleCloudDialogflowCxV3beta1ResponseMessageText

type GoogleCloudDialogflowCxV3beta1ResponseMessageText struct {// AllowPlaybackInterruption: Output only. Whether the playback of this message// can be interrupted by the end user's speech and the client can then starts// the next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Text: Required. A collection of text response variants. If multiple variants// are defined, only one text response variant is returned at runtime.Text []string `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ResponseMessageText: The text responsemessage.

func (GoogleCloudDialogflowCxV3beta1ResponseMessageText)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1RestoreAgentRequest

type GoogleCloudDialogflowCxV3beta1RestoreAgentRequest struct {// AgentContent: Uncompressed raw byte content for agent.AgentContentstring `json:"agentContent,omitempty"`// AgentUri: The Google Cloud Storage (https://cloud.google.com/storage/docs/)// URI to restore agent from. The format of this URI must be `gs:///`.// Dialogflow performs a read operation for the Cloud Storage object on the// caller's behalf, so your request authentication must have read permissions// for the object. For more information, see Dialogflow access control// (https://cloud.google.com/dialogflow/cx/docs/concept/access-control#storage).AgentUristring `json:"agentUri,omitempty"`// GitSource: Setting for restoring from a git branchGitSource *GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource `json:"gitSource,omitempty"`// RestoreOption: Agent restore mode. If not specified, `KEEP` is assumed.//// Possible values://   "RESTORE_OPTION_UNSPECIFIED" - Unspecified. Treated as KEEP.//   "KEEP" - Always respect the settings from the exported agent file. It may// cause a restoration failure if some settings (e.g. model type) are not// supported in the target agent.//   "FALLBACK" - Fallback to default settings if some settings are not// supported in the target agent.RestoreOptionstring `json:"restoreOption,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RestoreAgentRequest: The request message forAgents.RestoreAgent.

func (GoogleCloudDialogflowCxV3beta1RestoreAgentRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSourceadded inv0.131.0

type GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource struct {// TrackingBranch: tracking branch for the git pullTrackingBranchstring `json:"trackingBranch,omitempty"`// ForceSendFields is a list of field names (e.g. "TrackingBranch") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TrackingBranch") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource: Settings forrestoring from a git branch

func (GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource)MarshalJSONadded inv0.131.0

typeGoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequestadded inv0.212.0

type GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest struct {}

GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest: The requestmessage for Playbooks.RestorePlaybookVersion.

typeGoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponseadded inv0.212.0

type GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse struct {// Playbook: The updated playbook.Playbook *GoogleCloudDialogflowCxV3beta1Playbook `json:"playbook,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Playbook") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Playbook") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse: The responsemessage for Playbooks.RestorePlaybookVersion.

func (GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse)MarshalJSONadded inv0.212.0

typeGoogleCloudDialogflowCxV3beta1RestoreToolVersionRequestadded inv0.225.0

type GoogleCloudDialogflowCxV3beta1RestoreToolVersionRequest struct {}

GoogleCloudDialogflowCxV3beta1RestoreToolVersionRequest: The request messagefor Tools.RestoreToolVersion.

typeGoogleCloudDialogflowCxV3beta1RestoreToolVersionResponseadded inv0.225.0

type GoogleCloudDialogflowCxV3beta1RestoreToolVersionResponse struct {// Tool: The updated tool.Tool *GoogleCloudDialogflowCxV3beta1Tool `json:"tool,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Tool") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Tool") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RestoreToolVersionResponse: The responsemessage for Tools.RestoreToolVersion.

func (GoogleCloudDialogflowCxV3beta1RestoreToolVersionResponse)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1RolloutConfigadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1RolloutConfig struct {// FailureCondition: The conditions that are used to evaluate the failure of a// rollout step. If not specified, no rollout steps will fail. E.g.// "containment_rate < 10% OR average_turn_count < 3". See the conditions// reference (https://cloud.google.com/dialogflow/cx/docs/reference/condition).FailureConditionstring `json:"failureCondition,omitempty"`// RolloutCondition: The conditions that are used to evaluate the success of a// rollout step. If not specified, all rollout steps will proceed to the next// one unless failure conditions are met. E.g. "containment_rate > 60% AND// callback_rate < 20%". See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition).RolloutConditionstring `json:"rolloutCondition,omitempty"`// RolloutSteps: Steps to roll out a flow version. Steps should be sorted by// percentage in ascending order.RolloutSteps []*GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep `json:"rolloutSteps,omitempty"`// ForceSendFields is a list of field names (e.g. "FailureCondition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FailureCondition") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RolloutConfig: The configuration for autorollout.

func (GoogleCloudDialogflowCxV3beta1RolloutConfig)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStepadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep struct {// DisplayName: The name of the rollout step;DisplayNamestring `json:"displayName,omitempty"`// MinDuration: The minimum time that this step should last. Should be longer// than 1 hour. If not set, the default minimum duration for each step will be// 1 hour.MinDurationstring `json:"minDuration,omitempty"`// TrafficPercent: The percentage of traffic allocated to the flow version of// this rollout step. (0%, 100%].TrafficPercentint64 `json:"trafficPercent,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep: A single rolloutstep with specified traffic allocation.

func (GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1RolloutStateadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1RolloutState struct {// StartTime: Start time of the current step.StartTimestring `json:"startTime,omitempty"`// Step: Display name of the current auto rollout step.Stepstring `json:"step,omitempty"`// StepIndex: Index of the current step in the auto rollout steps list.StepIndexint64 `json:"stepIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "StartTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "StartTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RolloutState: State of the auto-rolloutprocess.

func (GoogleCloudDialogflowCxV3beta1RolloutState)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1RunContinuousTestMetadataadded inv0.48.0

type GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata struct {// Errors: The test errors.Errors []*GoogleCloudDialogflowCxV3beta1TestError `json:"errors,omitempty"`// ForceSendFields is a list of field names (e.g. "Errors") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Errors") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata: Metadata returnedfor the Environments.RunContinuousTest long running operation.

func (GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3beta1RunContinuousTestRequestadded inv0.48.0

type GoogleCloudDialogflowCxV3beta1RunContinuousTestRequest struct {}

GoogleCloudDialogflowCxV3beta1RunContinuousTestRequest: The request messagefor Environments.RunContinuousTest.

typeGoogleCloudDialogflowCxV3beta1RunContinuousTestResponseadded inv0.48.0

type GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse struct {// ContinuousTestResult: The result for a continuous test run.ContinuousTestResult *GoogleCloudDialogflowCxV3beta1ContinuousTestResult `json:"continuousTestResult,omitempty"`// ForceSendFields is a list of field names (e.g. "ContinuousTestResult") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContinuousTestResult") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse: The responsemessage for Environments.RunContinuousTest.

func (GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse)MarshalJSONadded inv0.48.0

typeGoogleCloudDialogflowCxV3beta1RunTestCaseMetadataadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata struct {}

GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata: Metadata returned for theTestCases.RunTestCase long running operation. This message currently has nofields.

typeGoogleCloudDialogflowCxV3beta1RunTestCaseRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1RunTestCaseRequest struct {// Environment: Optional. Environment name. If not set, draft environment is// assumed. Format: `projects//locations//agents//environments/`.Environmentstring `json:"environment,omitempty"`// ForceSendFields is a list of field names (e.g. "Environment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Environment") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RunTestCaseRequest: The request message forTestCases.RunTestCase.

func (GoogleCloudDialogflowCxV3beta1RunTestCaseRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1RunTestCaseResponseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1RunTestCaseResponse struct {// Result: The result.Result *GoogleCloudDialogflowCxV3beta1TestCaseResult `json:"result,omitempty"`// ForceSendFields is a list of field names (e.g. "Result") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Result") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1RunTestCaseResponse: The response message forTestCases.RunTestCase.

func (GoogleCloudDialogflowCxV3beta1RunTestCaseResponse)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1SafetySettingsadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1SafetySettings struct {// BannedPhrases: Banned phrases for generated text.BannedPhrases []*GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase `json:"bannedPhrases,omitempty"`// DefaultBannedPhraseMatchStrategy: Optional. Default phrase match strategy// for banned phrases.//// Possible values://   "PHRASE_MATCH_STRATEGY_UNSPECIFIED" - Unspecified, defaults to// PARTIAL_MATCH.//   "PARTIAL_MATCH" - Text that contains the phrase as a substring will be// matched, e.g. "foo" will match "afoobar".//   "WORD_MATCH" - Text that contains the tokenized words of the phrase will// be matched, e.g. "foo" will match "a foo bar" and "foo bar", but not// "foobar".DefaultBannedPhraseMatchStrategystring `json:"defaultBannedPhraseMatchStrategy,omitempty"`// PromptSecuritySettings: Optional. Settings for prompt security checks.PromptSecuritySettings *GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings `json:"promptSecuritySettings,omitempty"`// ForceSendFields is a list of field names (e.g. "BannedPhrases") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BannedPhrases") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SafetySettings: Settings for GenerativeSafety.

func (GoogleCloudDialogflowCxV3beta1SafetySettings)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1SafetySettingsPhraseadded inv0.139.0

type GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase struct {// LanguageCode: Required. Language code of the phrase.LanguageCodestring `json:"languageCode,omitempty"`// Text: Required. Text input which can be used for prompt or banned phrases.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase: Text input which can beused for prompt or banned phrases.

func (GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase)MarshalJSONadded inv0.139.0

typeGoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettingsadded inv0.239.0

type GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings struct {// EnablePromptSecurity: Optional. Enable prompt security checks.EnablePromptSecuritybool `json:"enablePromptSecurity,omitempty"`// ForceSendFields is a list of field names (e.g. "EnablePromptSecurity") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnablePromptSecurity") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings: Settingsfor prompt security checks.

func (GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings)MarshalJSONadded inv0.239.0

typeGoogleCloudDialogflowCxV3beta1SearchConfigadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1SearchConfig struct {// BoostSpecs: Optional. Boosting configuration for the datastores. Maps from// datastore name to their boost configuration. Do not specify more than one// BoostSpecs for each datastore name. If multiple BoostSpecs are provided for// the same datastore name, the behavior is undefined.BoostSpecs []*GoogleCloudDialogflowCxV3beta1BoostSpecs `json:"boostSpecs,omitempty"`// FilterSpecs: Optional. Filter configuration for the datastores. Maps from// datastore name to the filter expression for that datastore. Do not specify// more than one FilterSpecs for each datastore name. If multiple FilterSpecs// are provided for the same datastore name, the behavior is undefined.FilterSpecs []*GoogleCloudDialogflowCxV3beta1FilterSpecs `json:"filterSpecs,omitempty"`// ForceSendFields is a list of field names (e.g. "BoostSpecs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BoostSpecs") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SearchConfig: Search configuration for UCSsearch queries.

func (GoogleCloudDialogflowCxV3beta1SearchConfig)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1SecuritySettingsadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1SecuritySettings struct {// AudioExportSettings: Controls audio export settings for post-conversation// analytics when ingesting audio to conversations via// Participants.AnalyzeContent or Participants.StreamingAnalyzeContent. If// retention_strategy is set to REMOVE_AFTER_CONVERSATION or// audio_export_settings.gcs_bucket is empty, audio export is disabled. If// audio export is enabled, audio is recorded and saved to// audio_export_settings.gcs_bucket, subject to retention policy of// audio_export_settings.gcs_bucket. This setting won't effect audio input for// implicit sessions via Sessions.DetectIntent or// Sessions.StreamingDetectIntent.AudioExportSettings *GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings `json:"audioExportSettings,omitempty"`// DeidentifyTemplate: DLP (https://cloud.google.com/dlp/docs) deidentify// template name. Use this template to define de-identification configuration// for the content. The `DLP De-identify Templates Reader` role is needed on// the Dialogflow service identity service account (has the form// `service-PROJECT_NUMBER@gcp-sa-dialogflow.iam.gserviceaccount.com`) for your// agent's project. If empty, Dialogflow replaces sensitive info with// `[redacted]` text. The template name will have one of the following formats:// `projects//locations//deidentifyTemplates/` OR// `organizations//locations//deidentifyTemplates/` Note: `deidentify_template`// must be located in the same region as the `SecuritySettings`.DeidentifyTemplatestring `json:"deidentifyTemplate,omitempty"`// DisplayName: Required. The human-readable name of the security settings,// unique within the location.DisplayNamestring `json:"displayName,omitempty"`// InsightsExportSettings: Controls conversation exporting settings to Insights// after conversation is completed. If retention_strategy is set to// REMOVE_AFTER_CONVERSATION, Insights export is disabled no matter what you// configure here.InsightsExportSettings *GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings `json:"insightsExportSettings,omitempty"`// InspectTemplate: DLP (https://cloud.google.com/dlp/docs) inspect template// name. Use this template to define inspect base settings. The `DLP Inspect// Templates Reader` role is needed on the Dialogflow service identity service// account (has the form// `service-PROJECT_NUMBER@gcp-sa-dialogflow.iam.gserviceaccount.com`) for your// agent's project. If empty, we use the default DLP inspect config. The// template name will have one of the following formats:// `projects//locations//inspectTemplates/` OR// `organizations//locations//inspectTemplates/` Note: `inspect_template` must// be located in the same region as the `SecuritySettings`.InspectTemplatestring `json:"inspectTemplate,omitempty"`// Name: Resource name of the settings. Required for the// SecuritySettingsService.UpdateSecuritySettings method.// SecuritySettingsService.CreateSecuritySettings populates the name// automatically. Format: `projects//locations//securitySettings/`.Namestring `json:"name,omitempty"`// PurgeDataTypes: List of types of data to remove when retention settings// triggers purge.//// Possible values://   "PURGE_DATA_TYPE_UNSPECIFIED" - Unspecified. Do not use.//   "DIALOGFLOW_HISTORY" - Dialogflow history. This does not include Cloud// logging, which is owned by the user - not Dialogflow.PurgeDataTypes []string `json:"purgeDataTypes,omitempty"`// RedactionScope: Defines the data for which Dialogflow applies redaction.// Dialogflow does not redact data that it does not have access to – for// example, Cloud logging.//// Possible values://   "REDACTION_SCOPE_UNSPECIFIED" - Don't redact any kind of data.//   "REDACT_DISK_STORAGE" - On data to be written to disk or similar devices// that are capable of holding data even if power is disconnected. This// includes data that are temporarily saved on disk.RedactionScopestring `json:"redactionScope,omitempty"`// RedactionStrategy: Strategy that defines how we do redaction.//// Possible values://   "REDACTION_STRATEGY_UNSPECIFIED" - Do not redact.//   "REDACT_WITH_SERVICE" - Call redaction service to clean up the data to be// persisted.RedactionStrategystring `json:"redactionStrategy,omitempty"`// RetentionStrategy: Specifies the retention behavior defined by// SecuritySettings.RetentionStrategy.//// Possible values://   "RETENTION_STRATEGY_UNSPECIFIED" - Retains the persisted data with// Dialogflow's internal default 365d TTLs.//   "REMOVE_AFTER_CONVERSATION" - Removes data when the conversation ends. If// there is no Conversation explicitly established, a default conversation ends// when the corresponding Dialogflow session ends.RetentionStrategystring `json:"retentionStrategy,omitempty"`// RetentionWindowDays: Retains data in interaction logging for the specified// number of days. This does not apply to Cloud logging, which is owned by the// user - not Dialogflow. User must set a value lower than Dialogflow's default// 365d TTL (30 days for Agent Assist traffic), higher value will be ignored// and use default. Setting a value higher than that has no effect. A missing// value or setting to 0 also means we use default TTL. When data retention// configuration is changed, it only applies to the data created after the// change; the TTL of existing data created before the change stays intact.RetentionWindowDaysint64 `json:"retentionWindowDays,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AudioExportSettings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioExportSettings") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SecuritySettings: Represents the settingsrelated to security issues, such as data redaction and data retention. Itmay take hours for updates on the settings to propagate to all the relatedcomponents and take effect.

func (GoogleCloudDialogflowCxV3beta1SecuritySettings)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsadded inv0.78.0

type GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings struct {// AudioExportPattern: Filename pattern for exported audio. {conversation} and// {timestamp} are placeholders that will be replaced with the conversation ID// and epoch micros of the conversation. For example,// "{conversation}/recording_{timestamp}.mulaw".AudioExportPatternstring `json:"audioExportPattern,omitempty"`// AudioFormat: File format for exported audio file. Currently only in// telephony recordings.//// Possible values://   "AUDIO_FORMAT_UNSPECIFIED" - Unspecified. Do not use.//   "MULAW" - G.711 mu-law PCM with 8kHz sample rate.//   "MP3" - MP3 file format.//   "OGG" - OGG Vorbis.AudioFormatstring `json:"audioFormat,omitempty"`// EnableAudioRedaction: Enable audio redaction if it is true. Note that this// only redacts end-user audio data; Synthesised audio from the virtual agent// is not redacted.EnableAudioRedactionbool `json:"enableAudioRedaction,omitempty"`// GcsBucket: Cloud Storage bucket to export audio record to. Setting this// field would grant the Storage Object Creator role to the Dialogflow Service// Agent. API caller that tries to modify this field should have the permission// of storage.buckets.setIamPolicy.GcsBucketstring `json:"gcsBucket,omitempty"`// StoreTtsAudio: Whether to store TTS audio. By default, TTS audio from the// virtual agent is not exported.StoreTtsAudiobool `json:"storeTtsAudio,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioExportPattern") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioExportPattern") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings: Settingsfor exporting audio.

func (GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings)MarshalJSONadded inv0.78.0

typeGoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettingsadded inv0.53.0

type GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings struct {// EnableInsightsExport: If enabled, we will automatically exports// conversations to Insights and Insights runs its analyzers.EnableInsightsExportbool `json:"enableInsightsExport,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableInsightsExport") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableInsightsExport") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings:Settings for exporting conversations to Insights(https://cloud.google.com/contact-center/insights/docs).

func (GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings)MarshalJSONadded inv0.53.0

typeGoogleCloudDialogflowCxV3beta1SentimentAnalysisResultadded inv0.33.0

type GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult struct {// Magnitude: A non-negative number in the [0, +inf) range, which represents// the absolute magnitude of sentiment, regardless of score (positive or// negative).Magnitudefloat64 `json:"magnitude,omitempty"`// Score: Sentiment score between -1.0 (negative sentiment) and 1.0 (positive// sentiment).Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Magnitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Magnitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult: The result ofsentiment analysis. Sentiment analysis inspects user input and identifiesthe prevailing subjective opinion, especially to determine a user's attitudeas positive, negative, or neutral.

func (GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult)MarshalJSONadded inv0.33.0

func (*GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult)UnmarshalJSONadded inv0.33.0

typeGoogleCloudDialogflowCxV3beta1SessionEntityType

type GoogleCloudDialogflowCxV3beta1SessionEntityType struct {// Entities: Required. The collection of entities to override or supplement the// custom entity type.Entities []*GoogleCloudDialogflowCxV3beta1EntityTypeEntity `json:"entities,omitempty"`// EntityOverrideMode: Required. Indicates whether the additional data should// override or supplement the custom entity type definition.//// Possible values://   "ENTITY_OVERRIDE_MODE_UNSPECIFIED" - Not specified. This value should be// never used.//   "ENTITY_OVERRIDE_MODE_OVERRIDE" - The collection of session entities// overrides the collection of entities in the corresponding custom entity// type.//   "ENTITY_OVERRIDE_MODE_SUPPLEMENT" - The collection of session entities// extends the collection of entities in the corresponding custom entity type.// Note: Even in this override mode calls to `ListSessionEntityTypes`,// `GetSessionEntityType`, `CreateSessionEntityType` and// `UpdateSessionEntityType` only return the additional entities added in this// session entity type. If you want to get the supplemented list, please call// EntityTypes.GetEntityType on the custom entity type and merge.EntityOverrideModestring `json:"entityOverrideMode,omitempty"`// Name: Required. The unique identifier of the session entity type. Format:// `projects//locations//agents//sessions//entityTypes/` or// `projects//locations//agents//environments//sessions//entityTypes/`. If// `Environment ID` is not specified, we assume default 'draft' environment.Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Entities") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Entities") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SessionEntityType: Session entity types arereferred to as **User** entity types and are entities that are built for anindividual user such as favorites, preferences, playlists, and so on. Youcan redefine a session entity type at the session level to extend or replacea custom entity type at the user session level (we refer to the entity typesdefined at the agent level as "custom entity types"). Note: session entitytypes apply to all queries, regardless of the language. For more informationabout entity types, see the Dialogflow documentation(https://cloud.google.com/dialogflow/docs/entities-overview).

func (GoogleCloudDialogflowCxV3beta1SessionEntityType)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1SessionInfo

type GoogleCloudDialogflowCxV3beta1SessionInfo struct {// Parameters: Optional for WebhookRequest. Optional for WebhookResponse. All// parameters collected from forms and intents during the session. Parameters// can be created, updated, or removed by the webhook. To remove a parameter// from the session, the webhook should explicitly set the parameter value to// null in WebhookResponse. The map is keyed by parameters' display names.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// Session: Always present for WebhookRequest. Ignored for WebhookResponse. The// unique identifier of the session. This field can be used by the webhook to// identify a session. Format: `projects//locations//agents//sessions/` or// `projects//locations//agents//environments//sessions/` if environment is// specified.Sessionstring `json:"session,omitempty"`// ForceSendFields is a list of field names (e.g. "Parameters") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Parameters") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SessionInfo: Represents session informationcommunicated to and from the webhook.

func (GoogleCloudDialogflowCxV3beta1SessionInfo)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Spanadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1Span struct {// CompleteTime: Timestamp of the completion of the span.CompleteTimestring `json:"completeTime,omitempty"`// Metrics: The unordered collection of metrics in this span.Metrics []*GoogleCloudDialogflowCxV3beta1NamedMetric `json:"metrics,omitempty"`// Name: The name of the span.Namestring `json:"name,omitempty"`// StartTime: Timestamp of the start of the span.StartTimestring `json:"startTime,omitempty"`// Tags: The metadata tags of the span such as span type.Tags []string `json:"tags,omitempty"`// ForceSendFields is a list of field names (e.g. "CompleteTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CompleteTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Span: A span represents a sub execution stepof an action.

func (GoogleCloudDialogflowCxV3beta1Span)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1SpeechToTextSettings

type GoogleCloudDialogflowCxV3beta1SpeechToTextSettings struct {// EnableSpeechAdaptation: Whether to use speech adaptation for speech// recognition.EnableSpeechAdaptationbool `json:"enableSpeechAdaptation,omitempty"`// ForceSendFields is a list of field names (e.g. "EnableSpeechAdaptation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EnableSpeechAdaptation") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SpeechToTextSettings: Settings related tospeech recognition.

func (GoogleCloudDialogflowCxV3beta1SpeechToTextSettings)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1StartExperimentRequestadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1StartExperimentRequest struct {}

GoogleCloudDialogflowCxV3beta1StartExperimentRequest: The request messagefor Experiments.StartExperiment.

typeGoogleCloudDialogflowCxV3beta1Statusadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1Status struct {// Exception: Optional. The exception thrown during the execution of the// action.Exception *GoogleCloudDialogflowCxV3beta1ExceptionDetail `json:"exception,omitempty"`// ForceSendFields is a list of field names (e.g. "Exception") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Exception") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Status: The status of the action.

func (GoogleCloudDialogflowCxV3beta1Status)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1StopExperimentRequestadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1StopExperimentRequest struct {}

GoogleCloudDialogflowCxV3beta1StopExperimentRequest: The request message forExperiments.StopExperiment.

typeGoogleCloudDialogflowCxV3beta1SubmitAnswerFeedbackRequestadded inv0.152.0

type GoogleCloudDialogflowCxV3beta1SubmitAnswerFeedbackRequest struct {// AnswerFeedback: Required. Feedback provided for a bot answer.AnswerFeedback *GoogleCloudDialogflowCxV3beta1AnswerFeedback `json:"answerFeedback,omitempty"`// ResponseId: Required. ID of the response to update its feedback. This is the// same as DetectIntentResponse.response_id.ResponseIdstring `json:"responseId,omitempty"`// UpdateMask: Optional. The mask to control which fields to update. If the// mask is not present, all fields will be updated.UpdateMaskstring `json:"updateMask,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerFeedback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerFeedback") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SubmitAnswerFeedbackRequest: The request toset the feedback for a bot answer.

func (GoogleCloudDialogflowCxV3beta1SubmitAnswerFeedbackRequest)MarshalJSONadded inv0.152.0

typeGoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig

type GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig struct {// EffectsProfileId: Optional. An identifier which selects 'audio effects'// profiles that are applied on (post synthesized) text to speech. Effects are// applied on top of each other in the order they are given.EffectsProfileId []string `json:"effectsProfileId,omitempty"`// Pitch: Optional. Speaking pitch, in the range [-20.0, 20.0]. 20 means// increase 20 semitones from the original pitch. -20 means decrease 20// semitones from the original pitch.Pitchfloat64 `json:"pitch,omitempty"`// SpeakingRate: Optional. Speaking rate/speed, in the range [0.25, 4.0]. 1.0// is the normal native speed supported by the specific voice. 2.0 is twice as// fast, and 0.5 is half as fast. If unset(0.0), defaults to the native 1.0// speed. Any other values < 0.25 or > 4.0 will return an error.SpeakingRatefloat64 `json:"speakingRate,omitempty"`// Voice: Optional. The desired voice of the synthesized audio.Voice *GoogleCloudDialogflowCxV3beta1VoiceSelectionParams `json:"voice,omitempty"`// VolumeGainDb: Optional. Volume gain (in dB) of the normal native volume// supported by the specific voice, in the range [-96.0, 16.0]. If unset, or// set to a value of 0.0 (dB), will play at normal native signal amplitude. A// value of -6.0 (dB) will play at approximately half the amplitude of the// normal native signal amplitude. A value of +6.0 (dB) will play at// approximately twice the amplitude of the normal native signal amplitude. We// strongly recommend not to exceed +10 (dB) as there's usually no effective// increase in loudness for any value greater than that.VolumeGainDbfloat64 `json:"volumeGainDb,omitempty"`// ForceSendFields is a list of field names (e.g. "EffectsProfileId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EffectsProfileId") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig: Configuration of howspeech should be synthesized.

func (GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig)MarshalJSON

func (*GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig)UnmarshalJSON

typeGoogleCloudDialogflowCxV3beta1TestCaseadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestCase struct {// CreationTime: Output only. When the test was created.CreationTimestring `json:"creationTime,omitempty"`// DisplayName: Required. The human-readable name of the test case, unique// within the agent. Limit of 200 characters.DisplayNamestring `json:"displayName,omitempty"`// LastTestResult: The latest test result.LastTestResult *GoogleCloudDialogflowCxV3beta1TestCaseResult `json:"lastTestResult,omitempty"`// Name: The unique identifier of the test case. TestCases.CreateTestCase will// populate the name automatically. Otherwise use format:// `projects//locations//agents//testCases/`.Namestring `json:"name,omitempty"`// Notes: Additional freeform notes about the test case. Limit of 400// characters.Notesstring `json:"notes,omitempty"`// Tags: Tags are short descriptions that users may apply to test cases for// organizational and filtering purposes. Each tag should start with "#" and// has a limit of 30 characters.Tags []string `json:"tags,omitempty"`// TestCaseConversationTurns: The conversation turns uttered when the test case// was created, in chronological order. These include the canonical set of// agent utterances that should occur when the agent is working properly.TestCaseConversationTurns []*GoogleCloudDialogflowCxV3beta1ConversationTurn `json:"testCaseConversationTurns,omitempty"`// TestConfig: Config for the test case.TestConfig *GoogleCloudDialogflowCxV3beta1TestConfig `json:"testConfig,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreationTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreationTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestCase: Represents a test case.

func (GoogleCloudDialogflowCxV3beta1TestCase)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TestCaseErroradded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestCaseError struct {// Status: The status associated with the test case.Status *GoogleRpcStatus `json:"status,omitempty"`// TestCase: The test case.TestCase *GoogleCloudDialogflowCxV3beta1TestCase `json:"testCase,omitempty"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestCaseError: Error info for importing atest.

func (GoogleCloudDialogflowCxV3beta1TestCaseError)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TestCaseResultadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestCaseResult struct {// ConversationTurns: The conversation turns uttered during the test case// replay in chronological order.ConversationTurns []*GoogleCloudDialogflowCxV3beta1ConversationTurn `json:"conversationTurns,omitempty"`// Environment: Environment where the test was run. If not set, it indicates// the draft environment.Environmentstring `json:"environment,omitempty"`// Name: The resource name for the test case result. Format:// `projects//locations//agents//testCases//results/`.Namestring `json:"name,omitempty"`// TestResult: Whether the test case passed in the agent environment.//// Possible values://   "TEST_RESULT_UNSPECIFIED" - Not specified. Should never be used.//   "PASSED" - The test passed.//   "FAILED" - The test did not pass.TestResultstring `json:"testResult,omitempty"`// TestTime: The time that the test was run.TestTimestring `json:"testTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ConversationTurns") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationTurns") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestCaseResult: Represents a result fromrunning a test case in an agent environment.

func (GoogleCloudDialogflowCxV3beta1TestCaseResult)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TestConfigadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestConfig struct {// Flow: Flow name to start the test case with. Format:// `projects//locations//agents//flows/`. Only one of `flow` and `page` should// be set to indicate the starting point of the test case. If neither is set,// the test case will start with start page on the default start flow.Flowstring `json:"flow,omitempty"`// Page: The page to start the test case with. Format:// `projects//locations//agents//flows//pages/`. Only one of `flow` and `page`// should be set to indicate the starting point of the test case. If neither is// set, the test case will start with start page on the default start flow.Pagestring `json:"page,omitempty"`// TrackingParameters: Session parameters to be compared when calculating// differences.TrackingParameters []string `json:"trackingParameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Flow") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flow") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestConfig: Represents configurations for atest case.

func (GoogleCloudDialogflowCxV3beta1TestConfig)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TestErroradded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestError struct {// Status: The status associated with the test.Status *GoogleRpcStatus `json:"status,omitempty"`// TestCase: The test case resource name.TestCasestring `json:"testCase,omitempty"`// TestTime: The timestamp when the test was completed.TestTimestring `json:"testTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Status") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Status") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestError: Error info for running a test.

func (GoogleCloudDialogflowCxV3beta1TestError)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TestRunDifferenceadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TestRunDifference struct {// Description: A human readable description of the diff, showing the actual// output vs expected output.Descriptionstring `json:"description,omitempty"`// Type: The type of diff.//// Possible values://   "DIFF_TYPE_UNSPECIFIED" - Should never be used.//   "INTENT" - The intent.//   "PAGE" - The page.//   "PARAMETERS" - The parameters.//   "UTTERANCE" - The message utterance.//   "FLOW" - The flow.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TestRunDifference: The description ofdifferences between original and replayed agent output.

func (GoogleCloudDialogflowCxV3beta1TestRunDifference)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TextInput

type GoogleCloudDialogflowCxV3beta1TextInput struct {// Text: Required. The UTF-8 encoded natural language text to be processed.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TextInput: Represents the natural languagetext to be processed.

func (GoogleCloudDialogflowCxV3beta1TextInput)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1TextToSpeechSettingsadded inv0.110.0

type GoogleCloudDialogflowCxV3beta1TextToSpeechSettings struct {// SynthesizeSpeechConfigs: Configuration of how speech should be synthesized,// mapping from language// (https://cloud.google.com/dialogflow/cx/docs/reference/language) to// SynthesizeSpeechConfig. These settings affect: - The phone gateway// (https://cloud.google.com/dialogflow/cx/docs/concept/integration/phone-gateway)// synthesize configuration set via Agent.text_to_speech_settings. - How speech// is synthesized when invoking session APIs. Agent.text_to_speech_settings// only applies if OutputAudioConfig.synthesize_speech_config is not specified.SynthesizeSpeechConfigs map[string]GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig `json:"synthesizeSpeechConfigs,omitempty"`// ForceSendFields is a list of field names (e.g. "SynthesizeSpeechConfigs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SynthesizeSpeechConfigs") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TextToSpeechSettings: Settings related tospeech synthesizing.

func (GoogleCloudDialogflowCxV3beta1TextToSpeechSettings)MarshalJSONadded inv0.110.0

typeGoogleCloudDialogflowCxV3beta1Tooladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1Tool struct {// ConnectorSpec: Integration connectors tool specification.ConnectorSpec *GoogleCloudDialogflowCxV3beta1ToolConnectorTool `json:"connectorSpec,omitempty"`// DataStoreSpec: Data store search tool specification.DataStoreSpec *GoogleCloudDialogflowCxV3beta1ToolDataStoreTool `json:"dataStoreSpec,omitempty"`// Description: Required. High level description of the Tool and its usage.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the Tool, unique within an// agent.DisplayNamestring `json:"displayName,omitempty"`// ExtensionSpec: Vertex extension tool specification.ExtensionSpec *GoogleCloudDialogflowCxV3beta1ToolExtensionTool `json:"extensionSpec,omitempty"`// FunctionSpec: Client side executed function specification.FunctionSpec *GoogleCloudDialogflowCxV3beta1ToolFunctionTool `json:"functionSpec,omitempty"`// Name: The unique identifier of the Tool. Format:// `projects//locations//agents//tools/`.Namestring `json:"name,omitempty"`// OpenApiSpec: OpenAPI specification of the Tool.OpenApiSpec *GoogleCloudDialogflowCxV3beta1ToolOpenApiTool `json:"openApiSpec,omitempty"`// ToolType: Output only. The tool type.//// Possible values://   "TOOL_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "CUSTOMIZED_TOOL" - Customer provided tool.//   "BUILTIN_TOOL" - First party built-in tool created by Dialogflow which// cannot be modified.ToolTypestring `json:"toolType,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ConnectorSpec") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConnectorSpec") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Tool: A tool provides a list of actions whichare available to the Playbook to attain its goal. A Tool consists of adescription of the tool's usage and a specification of the tool whichcontains the schema and authentication information.

func (GoogleCloudDialogflowCxV3beta1Tool)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolAuthentication struct {// ApiKeyConfig: Config for API key auth.ApiKeyConfig *GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig `json:"apiKeyConfig,omitempty"`// BearerTokenConfig: Config for bearer token auth.BearerTokenConfig *GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig `json:"bearerTokenConfig,omitempty"`// OauthConfig: Config for OAuth.OauthConfig *GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig `json:"oauthConfig,omitempty"`// ServiceAccountAuthConfig: Configuration for service account authentication.ServiceAccountAuthConfig *GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig `json:"serviceAccountAuthConfig,omitempty"`// ServiceAgentAuthConfig: Config for Diglogflow service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent)// auth.ServiceAgentAuthConfig *GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig `json:"serviceAgentAuthConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "ApiKeyConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ApiKeyConfig") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthentication: Authentication informationrequired for API calls

func (GoogleCloudDialogflowCxV3beta1ToolAuthentication)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfigadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig struct {// ApiKey: Optional. The API key. If the `secret_version_for_api_key` field is// set, this field will be ignored.ApiKeystring `json:"apiKey,omitempty"`// KeyName: Required. The parameter name or the header name of the API key.// E.g., If the API request is "https://example.com/act?X-Api-Key=",// "X-Api-Key" would be the parameter name.KeyNamestring `json:"keyName,omitempty"`// RequestLocation: Required. Key location in the request.//// Possible values://   "REQUEST_LOCATION_UNSPECIFIED" - Default value. This value is unused.//   "HEADER" - Represents the key in http header.//   "QUERY_STRING" - Represents the key in query string.RequestLocationstring `json:"requestLocation,omitempty"`// SecretVersionForApiKey: Optional. The name of the SecretManager secret// version resource storing the API key. If this field is set, the `api_key`// field will be ignored. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForApiKeystring `json:"secretVersionForApiKey,omitempty"`// ForceSendFields is a list of field names (e.g. "ApiKey") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ApiKey") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig: Config forauthentication with API key.

func (GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfigadded inv0.193.0

type GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig struct {// SecretVersionForToken: Optional. The name of the SecretManager secret// version resource storing the Bearer token. If this field is set, the `token`// field will be ignored. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForTokenstring `json:"secretVersionForToken,omitempty"`// Token: Optional. The text token appended to the text `Bearer` to the request// Authorization header. Session parameters reference// (https://cloud.google.com/dialogflow/cx/docs/concept/parameter#session-ref)// can be used to pass the token dynamically, e.g.// `$session.params.parameter-id`.Tokenstring `json:"token,omitempty"`// ForceSendFields is a list of field names (e.g. "SecretVersionForToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SecretVersionForToken") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig: Configfor authentication using bearer token.

func (GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig)MarshalJSONadded inv0.193.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfigadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig struct {// ClientId: Required. The client ID from the OAuth provider.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. The client secret from the OAuth provider. If the// `secret_version_for_client_secret` field is set, this field will be ignored.ClientSecretstring `json:"clientSecret,omitempty"`// OauthGrantType: Required. OAuth grant types.//// Possible values://   "OAUTH_GRANT_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "CLIENT_CREDENTIAL" - Represents the [client credential// flow](https://oauth.net/2/grant-types/client-credentials).OauthGrantTypestring `json:"oauthGrantType,omitempty"`// Scopes: Optional. The OAuth scopes to grant.Scopes []string `json:"scopes,omitempty"`// SecretVersionForClientSecret: Optional. The name of the SecretManager secret// version resource storing the client secret. If this field is set, the// `client_secret` field will be ignored. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForClientSecretstring `json:"secretVersionForClientSecret,omitempty"`// TokenEndpoint: Required. The token endpoint in the OAuth provider to// exchange for an access token.TokenEndpointstring `json:"tokenEndpoint,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClientId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig: Config forauthentication with OAuth.

func (GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfigadded inv0.255.0

type GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig struct {// ServiceAccount: Required. The email address of the service account used to// authenticate the tool call. Dialogflow uses this service account to exchange// an access token and the access token is then sent in the `Authorization`// header of the tool request. The service account must have the// `roles/iam.serviceAccountTokenCreator` role granted to the Dialogflow// service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).ServiceAccountstring `json:"serviceAccount,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAccount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ServiceAccount") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig:Configuration for authentication using a service account.

func (GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig)MarshalJSONadded inv0.255.0

typeGoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfigadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig struct {// ServiceAgentAuth: Optional. Indicate the auth token type generated from the// Diglogflow service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).// The generated token is sent in the Authorization header.//// Possible values://   "SERVICE_AGENT_AUTH_UNSPECIFIED" - Service agent auth type unspecified.// Default to ID_TOKEN.//   "ID_TOKEN" - Use [ID// token](https://cloud.google.com/docs/authentication/token-types#id)// generated from service agent. This can be used to access Cloud Function and// Cloud Run after you grant Invoker role to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.//   "ACCESS_TOKEN" - Use [access// token](https://cloud.google.com/docs/authentication/token-types#access)// generated from service agent. This can be used to access other Google Cloud// APIs after you grant required roles to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.ServiceAgentAuthstring `json:"serviceAgentAuth,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAgentAuth") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ServiceAgentAuth") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig:Config for auth using Diglogflow service agent(https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).

func (GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig)MarshalJSONadded inv0.193.0

typeGoogleCloudDialogflowCxV3beta1ToolCalladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolCall struct {// Action: Required. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// InputParameters: Optional. The action's input parameters.InputParametersgoogleapi.RawMessage `json:"inputParameters,omitempty"`// Tool: Required. The tool associated with this call. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolCall: Represents a call of a specifictool's action with the specified inputs.

func (GoogleCloudDialogflowCxV3beta1ToolCall)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolCallResultadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolCallResult struct {// Action: Required. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// Error: The tool call's error.Error *GoogleCloudDialogflowCxV3beta1ToolCallResultError `json:"error,omitempty"`// OutputParameters: The tool call's output parameters.OutputParametersgoogleapi.RawMessage `json:"outputParameters,omitempty"`// Tool: Required. The tool associated with this call. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolCallResult: The result of calling a tool'saction that has been executed by the client.

func (GoogleCloudDialogflowCxV3beta1ToolCallResult)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolCallResultErroradded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolCallResultError struct {// Message: Optional. The error message of the function.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Message") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Message") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolCallResultError: An error produced by thetool call.

func (GoogleCloudDialogflowCxV3beta1ToolCallResultError)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolConnectorTooladded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolConnectorTool struct {// Actions: Required. Actions for the tool to use.Actions []*GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction `json:"actions,omitempty"`// EndUserAuthConfig: Optional. Integration Connectors end-user authentication// configuration. If configured, the end-user authentication fields will be// passed in the Integration Connectors API request and override the admin,// default authentication configured for the Connection. **Note**: The// Connection must have authentication override enabled in order to specify an// EUC configuration here - otherwise, the ConnectorTool creation will fail.// See://https://cloud.google.com/application-integration/docs/configure-connectors-task#configure-authentication-overrideEndUserAuthConfig *GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig `json:"endUserAuthConfig,omitempty"`// Name: Required. The full resource name of the referenced Integration// Connectors Connection. Format: `projects/*/locations/*/connections/*`Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Actions") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Actions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolConnectorTool: A ConnectorTool enablingusing Integration Connectors Connections as tools.

func (GoogleCloudDialogflowCxV3beta1ToolConnectorTool)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolConnectorToolActionadded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction struct {// ConnectionActionId: ID of a Connection action for the tool to use.ConnectionActionIdstring `json:"connectionActionId,omitempty"`// EntityOperation: Entity operation configuration for the tool to use.EntityOperation *GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation `json:"entityOperation,omitempty"`// InputFields: Optional. Entity fields to use as inputs for the operation. If// no fields are specified, all fields of the Entity will be used.InputFields []string `json:"inputFields,omitempty"`// OutputFields: Optional. Entity fields to return from the operation. If no// fields are specified, all fields of the Entity will be returned.OutputFields []string `json:"outputFields,omitempty"`// ForceSendFields is a list of field names (e.g. "ConnectionActionId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConnectionActionId") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction: Configuration of aConnection operation for the tool to use.

func (GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperationadded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation struct {// EntityId: Required. ID of the entity.EntityIdstring `json:"entityId,omitempty"`// Operation: Required. Operation to perform on the entity.//// Possible values://   "OPERATION_TYPE_UNSPECIFIED" - Operation type unspecified. Invalid,// ConnectorTool create/update will fail.//   "LIST" - List operation.//   "GET" - Get operation.//   "CREATE" - Create operation.//   "UPDATE" - Update operation.//   "DELETE" - Delete operation.Operationstring `json:"operation,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation: EntityCRUD operation specification.

func (GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolDataStoreTooladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolDataStoreTool struct {// DataStoreConnections: Required. List of data stores to search.DataStoreConnections []*GoogleCloudDialogflowCxV3beta1DataStoreConnection `json:"dataStoreConnections,omitempty"`// FallbackPrompt: Required. Fallback prompt configurations to use.FallbackPrompt *GoogleCloudDialogflowCxV3beta1ToolDataStoreToolFallbackPrompt `json:"fallbackPrompt,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStoreConnections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStoreConnections") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolDataStoreTool: A DataStoreTool is a way toprovide specifications needed to search a list of data stores.

func (GoogleCloudDialogflowCxV3beta1ToolDataStoreTool)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolDataStoreToolFallbackPromptadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolDataStoreToolFallbackPrompt struct {}

GoogleCloudDialogflowCxV3beta1ToolDataStoreToolFallbackPrompt: AFallbackPrompt is a way to provide specifications for the Data Storefallback prompt when generating responses.

typeGoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigadded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig struct {// Oauth2AuthCodeConfig: Oauth 2.0 Authorization Code authentication.Oauth2AuthCodeConfig *GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig `json:"oauth2AuthCodeConfig,omitempty"`// Oauth2JwtBearerConfig: JWT Profile Oauth 2.0 Authorization Grant// authentication.Oauth2JwtBearerConfig *GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig `json:"oauth2JwtBearerConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "Oauth2AuthCodeConfig") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Oauth2AuthCodeConfig") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig: End-user authenticationconfiguration used for Connection calls. The field values can either behardcoded authentication values or the names of session parameters(https://cloud.google.com/dialogflow/cx/docs/concept/parameter#session-ref)or request parameters(https://cloud.google.com/dialogflow/cx/docs/concept/parameter#request-scoped).If parameter names are provided, then those parameters can be used to passthe authentication values dynamically, through `$session.params.param-id` or`$request.payload.param-id`.

func (GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfigadded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig struct {// OauthToken: Required. Oauth token value or parameter name to pass it// through.OauthTokenstring `json:"oauthToken,omitempty"`// ForceSendFields is a list of field names (e.g. "OauthToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OauthToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig:Oauth 2.0 Authorization Code authentication configuration.

func (GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfigadded inv0.226.0

type GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig struct {// ClientKey: Required. Client key value or parameter name to pass it through.ClientKeystring `json:"clientKey,omitempty"`// Issuer: Required. Issuer value or parameter name to pass it through.Issuerstring `json:"issuer,omitempty"`// Subject: Required. Subject value or parameter name to pass it through.Subjectstring `json:"subject,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientKey") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClientKey") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig:JWT Profile Oauth 2.0 Authorization Grant authentication configuration.

func (GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowCxV3beta1ToolExtensionTooladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolExtensionTool struct {// Name: Required. The full name of the referenced vertex extension. Formats:// `projects/{project}/locations/{location}/extensions/{extension}`Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolExtensionTool: An ExtensionTool is a wayto use Vertex Extensions as a tool.

func (GoogleCloudDialogflowCxV3beta1ToolExtensionTool)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolFunctionTooladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolFunctionTool struct {// InputSchema: Optional. The JSON schema is encapsulated in a// google.protobuf.Struct to describe the input of the function. This input is// a JSON object that contains the function's parameters as properties of the// object.InputSchemagoogleapi.RawMessage `json:"inputSchema,omitempty"`// OutputSchema: Optional. The JSON schema is encapsulated in a// google.protobuf.Struct to describe the output of the function. This output// is a JSON object that contains the function's parameters as properties of// the object.OutputSchemagoogleapi.RawMessage `json:"outputSchema,omitempty"`// ForceSendFields is a list of field names (e.g. "InputSchema") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InputSchema") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolFunctionTool: A Function tool describesthe functions to be invoked on the client side.

func (GoogleCloudDialogflowCxV3beta1ToolFunctionTool)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolOpenApiTooladded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolOpenApiTool struct {// Authentication: Optional. Authentication information required by the API.Authentication *GoogleCloudDialogflowCxV3beta1ToolAuthentication `json:"authentication,omitempty"`// ServiceDirectoryConfig: Optional. Service Directory configuration.ServiceDirectoryConfig *GoogleCloudDialogflowCxV3beta1ToolServiceDirectoryConfig `json:"serviceDirectoryConfig,omitempty"`// TextSchema: Required. The OpenAPI schema specified as a text.TextSchemastring `json:"textSchema,omitempty"`// TlsConfig: Optional. TLS configuration for the HTTPS verification.TlsConfig *GoogleCloudDialogflowCxV3beta1ToolTLSConfig `json:"tlsConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "Authentication") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Authentication") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolOpenApiTool: An OpenAPI tool is a way toprovide the Tool specifications in the Open API schema format.

func (GoogleCloudDialogflowCxV3beta1ToolOpenApiTool)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolServiceDirectoryConfigadded inv0.190.0

type GoogleCloudDialogflowCxV3beta1ToolServiceDirectoryConfig struct {// Service: Required. The name of Service Directory// (https://cloud.google.com/service-directory) service. Format:// `projects//locations//namespaces//services/`. `LocationID` of the service// directory must be the same as the location of the agent.Servicestring `json:"service,omitempty"`// ForceSendFields is a list of field names (e.g. "Service") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Service") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolServiceDirectoryConfig: Configuration fortools using Service Directory.

func (GoogleCloudDialogflowCxV3beta1ToolServiceDirectoryConfig)MarshalJSONadded inv0.190.0

typeGoogleCloudDialogflowCxV3beta1ToolTLSConfigadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolTLSConfig struct {// CaCerts: Required. Specifies a list of allowed custom CA certificates for// HTTPS verification.CaCerts []*GoogleCloudDialogflowCxV3beta1ToolTLSConfigCACert `json:"caCerts,omitempty"`// ForceSendFields is a list of field names (e.g. "CaCerts") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CaCerts") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolTLSConfig: The TLS configuration.

func (GoogleCloudDialogflowCxV3beta1ToolTLSConfig)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolTLSConfigCACertadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolTLSConfigCACert struct {// Cert: Required. The allowed custom CA certificates (in DER format) for HTTPS// verification. This overrides the default SSL trust store. If this is empty// or unspecified, Dialogflow will use Google's default trust store to verify// certificates. N.B. Make sure the HTTPS server certificates are signed with// "subject alt name". For instance a certificate can be self-signed using the// following command: “` openssl x509 -req -days 200 -in example.com.csr \// -signkey example.com.key \ -out example.com.crt \ -extfile <(printf// "\nsubjectAltName='DNS:www.example.com'") “`Certstring `json:"cert,omitempty"`// DisplayName: Required. The name of the allowed custom CA certificates. This// can be used to disambiguate the custom CA certificates.DisplayNamestring `json:"displayName,omitempty"`// ForceSendFields is a list of field names (e.g. "Cert") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cert") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolTLSConfigCACert: The CA certificate.

func (GoogleCloudDialogflowCxV3beta1ToolTLSConfigCACert)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolUseadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1ToolUse struct {// Action: Optional. Name of the action to be called during the tool use.Actionstring `json:"action,omitempty"`// DataStoreToolTrace: Optional. Data store tool trace.DataStoreToolTrace *GoogleCloudDialogflowCxV3beta1ToolUseDataStoreToolTrace `json:"dataStoreToolTrace,omitempty"`// DisplayName: Output only. The display name of the tool.DisplayNamestring `json:"displayName,omitempty"`// InputActionParameters: Optional. A list of input parameters for the action.InputActionParametersgoogleapi.RawMessage `json:"inputActionParameters,omitempty"`// OutputActionParameters: Optional. A list of output parameters generated by// the action.OutputActionParametersgoogleapi.RawMessage `json:"outputActionParameters,omitempty"`// Tool: Required. The tool that should be used. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// WebhookToolTrace: Optional. Webhook tool trace.WebhookToolTrace *GoogleCloudDialogflowCxV3beta1ToolUseWebhookToolTrace `json:"webhookToolTrace,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolUse: Stores metadata of the invocation ofan action supported by a tool.

func (GoogleCloudDialogflowCxV3beta1ToolUse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ToolUseDataStoreToolTraceadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ToolUseDataStoreToolTrace struct {// DataStoreConnectionSignals: Optional. Data store connection feature output// signals.DataStoreConnectionSignals *GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals `json:"dataStoreConnectionSignals,omitempty"`// ForceSendFields is a list of field names (e.g. "DataStoreConnectionSignals")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DataStoreConnectionSignals") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolUseDataStoreToolTrace: The tracinginformation for the data store tool.

func (GoogleCloudDialogflowCxV3beta1ToolUseDataStoreToolTrace)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ToolUseWebhookToolTraceadded inv0.230.0

type GoogleCloudDialogflowCxV3beta1ToolUseWebhookToolTrace struct {// WebhookTag: Optional. The tag of the webhook.WebhookTagstring `json:"webhookTag,omitempty"`// WebhookUri: Optional. The url of the webhook.WebhookUristring `json:"webhookUri,omitempty"`// ForceSendFields is a list of field names (e.g. "WebhookTag") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "WebhookTag") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolUseWebhookToolTrace: The tracinginformation for the webhook tool.

func (GoogleCloudDialogflowCxV3beta1ToolUseWebhookToolTrace)MarshalJSONadded inv0.230.0

typeGoogleCloudDialogflowCxV3beta1ToolVersionadded inv0.225.0

type GoogleCloudDialogflowCxV3beta1ToolVersion struct {// CreateTime: Output only. Last time the tool version was created or modified.CreateTimestring `json:"createTime,omitempty"`// DisplayName: Required. The display name of the tool version.DisplayNamestring `json:"displayName,omitempty"`// Name: Identifier. The unique identifier of the tool version. Format:// `projects//locations//agents//tools//versions/`.Namestring `json:"name,omitempty"`// Tool: Required. Snapshot of the tool to be associated with this version.Tool *GoogleCloudDialogflowCxV3beta1Tool `json:"tool,omitempty"`// UpdateTime: Output only. Last time the tool version was created or modified.UpdateTimestring `json:"updateTime,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ToolVersion: Tool version is a snapshot of thetool at certain timestamp.

func (GoogleCloudDialogflowCxV3beta1ToolVersion)MarshalJSONadded inv0.225.0

typeGoogleCloudDialogflowCxV3beta1TrainFlowRequest

type GoogleCloudDialogflowCxV3beta1TrainFlowRequest struct {}

GoogleCloudDialogflowCxV3beta1TrainFlowRequest: The request message forFlows.TrainFlow.

typeGoogleCloudDialogflowCxV3beta1TransitionCoverageadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TransitionCoverage struct {// CoverageScore: The percent of transitions in the agent that are covered.CoverageScorefloat64 `json:"coverageScore,omitempty"`// Transitions: The list of Transitions present in the agent.Transitions []*GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition `json:"transitions,omitempty"`// ForceSendFields is a list of field names (e.g. "CoverageScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CoverageScore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionCoverage: Transition coveragerepresents the percentage of all possible page transitions (page-leveltransition routes and event handlers, excluding transition route groups)present within any of a parent's test cases.

func (GoogleCloudDialogflowCxV3beta1TransitionCoverage)MarshalJSONadded inv0.37.0

func (*GoogleCloudDialogflowCxV3beta1TransitionCoverage)UnmarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition struct {// Covered: Whether the transition is covered by at least one of the agent's// test cases.Coveredbool `json:"covered,omitempty"`// EventHandler: Event handler.EventHandler *GoogleCloudDialogflowCxV3beta1EventHandler `json:"eventHandler,omitempty"`// Index: The index of a transition in the transition list. Starting from 0.Indexint64 `json:"index,omitempty"`// Source: The start node of a transition.Source *GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode `json:"source,omitempty"`// Target: The end node of a transition.Target *GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode `json:"target,omitempty"`// TransitionRoute: Intent route or condition route.TransitionRoute *GoogleCloudDialogflowCxV3beta1TransitionRoute `json:"transitionRoute,omitempty"`// ForceSendFields is a list of field names (e.g. "Covered") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Covered") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition: A transition ina page.

func (GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNodeadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode struct {// Flow: Indicates a transition to a Flow. Only some fields such as name and// displayname will be set.Flow *GoogleCloudDialogflowCxV3beta1Flow `json:"flow,omitempty"`// Page: Indicates a transition to a Page. Only some fields such as name and// displayname will be set.Page *GoogleCloudDialogflowCxV3beta1Page `json:"page,omitempty"`// ForceSendFields is a list of field names (e.g. "Flow") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Flow") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode: The sourceor target of a transition.

func (GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1TransitionRoute

type GoogleCloudDialogflowCxV3beta1TransitionRoute struct {// Condition: The condition to evaluate against form parameters or session// parameters. See the conditions reference// (https://cloud.google.com/dialogflow/cx/docs/reference/condition). At least// one of `intent` or `condition` must be specified. When both `intent` and// `condition` are specified, the transition can only happen when both are// fulfilled.Conditionstring `json:"condition,omitempty"`// Description: Optional. The description of the transition route. The maximum// length is 500 characters.Descriptionstring `json:"description,omitempty"`// Intent: The unique identifier of an Intent. Format:// `projects//locations//agents//intents/`. Indicates that the transition can// only happen when the given intent is matched. At least one of `intent` or// `condition` must be specified. When both `intent` and `condition` are// specified, the transition can only happen when both are fulfilled.Intentstring `json:"intent,omitempty"`// Name: Output only. The unique identifier of this transition route.Namestring `json:"name,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// TriggerFulfillment: The fulfillment to call when the condition is satisfied.// At least one of `trigger_fulfillment` and `target` must be specified. When// both are defined, `trigger_fulfillment` is executed first.TriggerFulfillment *GoogleCloudDialogflowCxV3beta1Fulfillment `json:"triggerFulfillment,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionRoute: A transition route specifiesa intent that can be matched and/or a data condition that can be evaluatedduring a session. When a specified transition is matched, the followingactions are taken in order: * If there is a `trigger_fulfillment` associatedwith the transition, it will be called. * If there is a `target_page`associated with the transition, the session will transition into thespecified page. * If there is a `target_flow` associated with thetransition, the session will transition into the specified flow.

func (GoogleCloudDialogflowCxV3beta1TransitionRoute)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1TransitionRouteGroup

type GoogleCloudDialogflowCxV3beta1TransitionRouteGroup struct {// DisplayName: Required. The human-readable name of the transition route// group, unique within the flow. The display name can be no longer than 30// characters.DisplayNamestring `json:"displayName,omitempty"`// Name: The unique identifier of the transition route group.// TransitionRouteGroups.CreateTransitionRouteGroup populates the name// automatically. Format:// `projects//locations//agents//flows//transitionRouteGroups/` or// `projects//locations//agents//transitionRouteGroups/` for agent-level// groups.Namestring `json:"name,omitempty"`// TransitionRoutes: Transition routes associated with the// TransitionRouteGroup.TransitionRoutes []*GoogleCloudDialogflowCxV3beta1TransitionRoute `json:"transitionRoutes,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionRouteGroup: A TransitionRouteGrouprepresents a group of `TransitionRoutes` to be used by a Page.

func (GoogleCloudDialogflowCxV3beta1TransitionRouteGroup)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageadded inv0.41.0

type GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverage struct {// CoverageScore: The percent of transition routes in all the transition route// groups that are covered.CoverageScorefloat64 `json:"coverageScore,omitempty"`// Coverages: Transition route group coverages.Coverages []*GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage `json:"coverages,omitempty"`// ForceSendFields is a list of field names (e.g. "CoverageScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CoverageScore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverage: Transition routegroup coverage represents the percentage of all possible transition routespresent within any of a parent's test cases. The results are grouped by thetransition route group.

func (GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverage)MarshalJSONadded inv0.41.0

func (*GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverage)UnmarshalJSONadded inv0.41.0

typeGoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageadded inv0.41.0

type GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage struct {// CoverageScore: The percent of transition routes in the transition route// group that are covered.CoverageScorefloat64 `json:"coverageScore,omitempty"`// RouteGroup: Transition route group metadata. Only name and displayName will// be set.RouteGroup *GoogleCloudDialogflowCxV3beta1TransitionRouteGroup `json:"routeGroup,omitempty"`// Transitions: The list of transition routes and coverage in the transition// route group.Transitions []*GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition `json:"transitions,omitempty"`// ForceSendFields is a list of field names (e.g. "CoverageScore") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CoverageScore") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage: Coverageresult message for one transition route group.

func (GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage)MarshalJSONadded inv0.41.0

func (*GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage)UnmarshalJSONadded inv0.41.0

typeGoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransitionadded inv0.41.0

type GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition struct {// Covered: Whether the transition route is covered by at least one of the// agent's test cases.Coveredbool `json:"covered,omitempty"`// TransitionRoute: Intent route or condition route.TransitionRoute *GoogleCloudDialogflowCxV3beta1TransitionRoute `json:"transitionRoute,omitempty"`// ForceSendFields is a list of field names (e.g. "Covered") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Covered") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition:

A transition coverage in a transition route group.

func (GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition)MarshalJSONadded inv0.41.0

typeGoogleCloudDialogflowCxV3beta1TurnSignalsadded inv0.107.0

type GoogleCloudDialogflowCxV3beta1TurnSignals struct {// AgentEscalated: Whether agent responded with LiveAgentHandoff fulfillment.AgentEscalatedbool `json:"agentEscalated,omitempty"`// DtmfUsed: Whether user was using DTMF input.DtmfUsedbool `json:"dtmfUsed,omitempty"`// FailureReasons: Failure reasons of the turn.//// Possible values://   "FAILURE_REASON_UNSPECIFIED" - Failure reason is not assigned.//   "FAILED_INTENT" - Whether NLU failed to recognize user intent.//   "FAILED_WEBHOOK" - Whether webhook failed during the turn.FailureReasons []string `json:"failureReasons,omitempty"`// NoMatch: Whether NLU predicted NO_MATCH.NoMatchbool `json:"noMatch,omitempty"`// NoUserInput: Whether user provided no input.NoUserInputbool `json:"noUserInput,omitempty"`// ReachedEndPage: Whether turn resulted in End Session page.ReachedEndPagebool `json:"reachedEndPage,omitempty"`// SentimentMagnitude: Sentiment magnitude of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentMagnitudefloat64 `json:"sentimentMagnitude,omitempty"`// SentimentScore: Sentiment score of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentScorefloat64 `json:"sentimentScore,omitempty"`// UserEscalated: Whether user was specifically asking for a live agent.UserEscalatedbool `json:"userEscalated,omitempty"`// WebhookStatuses: Human-readable statuses of the webhooks triggered during// this turn.WebhookStatuses []string `json:"webhookStatuses,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentEscalated") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentEscalated") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TurnSignals: Collection of all signals thatwere extracted for a single turn of the conversation.

func (GoogleCloudDialogflowCxV3beta1TurnSignals)MarshalJSONadded inv0.107.0

func (*GoogleCloudDialogflowCxV3beta1TurnSignals)UnmarshalJSONadded inv0.123.0

typeGoogleCloudDialogflowCxV3beta1TypeSchemaadded inv0.191.0

type GoogleCloudDialogflowCxV3beta1TypeSchema struct {// InlineSchema: Set if this is an inline schema definition.InlineSchema *GoogleCloudDialogflowCxV3beta1InlineSchema `json:"inlineSchema,omitempty"`// SchemaReference: Set if this is a schema reference.SchemaReference *GoogleCloudDialogflowCxV3beta1TypeSchemaSchemaReference `json:"schemaReference,omitempty"`// ForceSendFields is a list of field names (e.g. "InlineSchema") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InlineSchema") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TypeSchema: Encapsulates different type schemavariations: either a reference to an a schema that's already defined by atool, or an inline definition.

func (GoogleCloudDialogflowCxV3beta1TypeSchema)MarshalJSONadded inv0.191.0

typeGoogleCloudDialogflowCxV3beta1TypeSchemaSchemaReferenceadded inv0.191.0

type GoogleCloudDialogflowCxV3beta1TypeSchemaSchemaReference struct {// Schema: The name of the schema.Schemastring `json:"schema,omitempty"`// Tool: The tool that contains this schema definition. Format:// `projects//locations//agents//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Schema") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Schema") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1TypeSchemaSchemaReference: A reference to theschema of an existing tool.

func (GoogleCloudDialogflowCxV3beta1TypeSchemaSchemaReference)MarshalJSONadded inv0.191.0

typeGoogleCloudDialogflowCxV3beta1UserUtteranceadded inv0.185.0

type GoogleCloudDialogflowCxV3beta1UserUtterance struct {// Audio: Optional. Audio input.Audiostring `json:"audio,omitempty"`// AudioTokens: Optional. Tokens of the audio input.AudioTokens []int64 `json:"audioTokens,omitempty"`// Text: Required. Message content in text.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Audio") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Audio") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1UserUtterance: UserUtterance represents onemessage sent by the customer.

func (GoogleCloudDialogflowCxV3beta1UserUtterance)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowCxV3beta1ValidateAgentRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ValidateAgentRequest struct {// LanguageCode: If not specified, the agent's default language is used.LanguageCodestring `json:"languageCode,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ValidateAgentRequest: The request message forAgents.ValidateAgent.

func (GoogleCloudDialogflowCxV3beta1ValidateAgentRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ValidateFlowRequestadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ValidateFlowRequest struct {// LanguageCode: If not specified, the agent's default language is used.LanguageCodestring `json:"languageCode,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ValidateFlowRequest: The request message forFlows.ValidateFlow.

func (GoogleCloudDialogflowCxV3beta1ValidateFlowRequest)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1ValidationMessageadded inv0.37.0

type GoogleCloudDialogflowCxV3beta1ValidationMessage struct {// Detail: The message detail.Detailstring `json:"detail,omitempty"`// ResourceNames: The resource names of the resources where the message is// found.ResourceNames []*GoogleCloudDialogflowCxV3beta1ResourceName `json:"resourceNames,omitempty"`// ResourceType: The type of the resources where the message is found.//// Possible values://   "RESOURCE_TYPE_UNSPECIFIED" - Unspecified.//   "AGENT" - Agent.//   "INTENT" - Intent.//   "INTENT_TRAINING_PHRASE" - Intent training phrase.//   "INTENT_PARAMETER" - Intent parameter.//   "INTENTS" - Multiple intents.//   "INTENT_TRAINING_PHRASES" - Multiple training phrases.//   "ENTITY_TYPE" - Entity type.//   "ENTITY_TYPES" - Multiple entity types.//   "WEBHOOK" - Webhook.//   "FLOW" - Flow.//   "PAGE" - Page.//   "PAGES" - Multiple pages.//   "TRANSITION_ROUTE_GROUP" - Transition route group.//   "AGENT_TRANSITION_ROUTE_GROUP" - Agent transition route group.ResourceTypestring `json:"resourceType,omitempty"`// Resources: The names of the resources where the message is found.Resources []string `json:"resources,omitempty"`// Severity: Indicates the severity of the message.//// Possible values://   "SEVERITY_UNSPECIFIED" - Unspecified.//   "INFO" - The agent doesn't follow Dialogflow best practices.//   "WARNING" - The agent may not behave as expected.//   "ERROR" - The agent may experience failures.Severitystring `json:"severity,omitempty"`// ForceSendFields is a list of field names (e.g. "Detail") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Detail") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1ValidationMessage: Agent/flow validationmessage.

func (GoogleCloudDialogflowCxV3beta1ValidationMessage)MarshalJSONadded inv0.37.0

typeGoogleCloudDialogflowCxV3beta1VariantsHistoryadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1VariantsHistory struct {// UpdateTime: Update time of the variants.UpdateTimestring `json:"updateTime,omitempty"`// VersionVariants: The flow versions as the variants.VersionVariants *GoogleCloudDialogflowCxV3beta1VersionVariants `json:"versionVariants,omitempty"`// ForceSendFields is a list of field names (e.g. "UpdateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "UpdateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1VariantsHistory: The history of variantsupdate.

func (GoogleCloudDialogflowCxV3beta1VariantsHistory)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1Version

type GoogleCloudDialogflowCxV3beta1Version struct {// CreateTime: Output only. Create time of the version.CreateTimestring `json:"createTime,omitempty"`// Description: The description of the version. The maximum length is 500// characters. If exceeded, the request is rejected.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. The human-readable name of the version. Limit of 64// characters.DisplayNamestring `json:"displayName,omitempty"`// Name: Format: projects//locations//agents//flows//versions/. Version ID is a// self-increasing number generated by Dialogflow upon version creation.Namestring `json:"name,omitempty"`// NluSettings: Output only. The NLU settings of the flow at version creation.NluSettings *GoogleCloudDialogflowCxV3beta1NluSettings `json:"nluSettings,omitempty"`// State: Output only. The state of this version. This field is read-only and// cannot be set by create and update methods.//// Possible values://   "STATE_UNSPECIFIED" - Not specified. This value is not used.//   "RUNNING" - Version is not ready to serve (e.g. training is running).//   "SUCCEEDED" - Training has succeeded and this version is ready to serve.//   "FAILED" - Version training failed.Statestring `json:"state,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CreateTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CreateTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Version: Represents a version of a flow.

func (GoogleCloudDialogflowCxV3beta1Version)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1VersionVariantsadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1VersionVariants struct {// Variants: A list of flow version variants.Variants []*GoogleCloudDialogflowCxV3beta1VersionVariantsVariant `json:"variants,omitempty"`// ForceSendFields is a list of field names (e.g. "Variants") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Variants") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1VersionVariants: A list of flow versionvariants.

func (GoogleCloudDialogflowCxV3beta1VersionVariants)MarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1VersionVariantsVariantadded inv0.39.0

type GoogleCloudDialogflowCxV3beta1VersionVariantsVariant struct {// IsControlGroup: Whether the variant is for the control group.IsControlGroupbool `json:"isControlGroup,omitempty"`// TrafficAllocation: Percentage of the traffic which should be routed to this// version of flow. Traffic allocation for a single flow must sum up to 1.0.TrafficAllocationfloat64 `json:"trafficAllocation,omitempty"`// Version: The name of the flow version. Format:// `projects//locations//agents//flows//versions/`.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "IsControlGroup") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IsControlGroup") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1VersionVariantsVariant: A single flow versionwith specified traffic allocation.

func (GoogleCloudDialogflowCxV3beta1VersionVariantsVariant)MarshalJSONadded inv0.39.0

func (*GoogleCloudDialogflowCxV3beta1VersionVariantsVariant)UnmarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1VoiceSelectionParams

type GoogleCloudDialogflowCxV3beta1VoiceSelectionParams struct {// Name: Optional. The name of the voice. If not set, the service will choose a// voice based on the other parameters such as language_code and ssml_gender.// For the list of available voices, please refer to Supported voices and// languages (https://cloud.google.com/text-to-speech/docs/voices).Namestring `json:"name,omitempty"`// SsmlGender: Optional. The preferred gender of the voice. If not set, the// service will choose a voice based on the other parameters such as// language_code and name. Note that this is only a preference, not// requirement. If a voice of the appropriate gender is not available, the// synthesizer should substitute a voice with a different gender rather than// failing the request.//// Possible values://   "SSML_VOICE_GENDER_UNSPECIFIED" - An unspecified gender, which means that// the client doesn't care which gender the selected voice will have.//   "SSML_VOICE_GENDER_MALE" - A male voice.//   "SSML_VOICE_GENDER_FEMALE" - A female voice.//   "SSML_VOICE_GENDER_NEUTRAL" - A gender-neutral voice.SsmlGenderstring `json:"ssmlGender,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1VoiceSelectionParams: Description of whichvoice to use for speech synthesis.

func (GoogleCloudDialogflowCxV3beta1VoiceSelectionParams)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1Webhook

type GoogleCloudDialogflowCxV3beta1Webhook struct {// Disabled: Indicates whether the webhook is disabled.Disabledbool `json:"disabled,omitempty"`// DisplayName: Required. The human-readable name of the webhook, unique within// the agent.DisplayNamestring `json:"displayName,omitempty"`// GenericWebService: Configuration for a generic web service.GenericWebService *GoogleCloudDialogflowCxV3beta1WebhookGenericWebService `json:"genericWebService,omitempty"`// Name: The unique identifier of the webhook. Required for the// Webhooks.UpdateWebhook method. Webhooks.CreateWebhook populates the name// automatically. Format: `projects//locations//agents//webhooks/`.Namestring `json:"name,omitempty"`// ServiceDirectory: Configuration for a Service Directory// (https://cloud.google.com/service-directory) service.ServiceDirectory *GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig `json:"serviceDirectory,omitempty"`// Timeout: Webhook execution timeout. Execution is considered failed if// Dialogflow doesn't receive a response from webhook at the end of the timeout// period. Defaults to 5 seconds, maximum allowed timeout is 30 seconds.Timeoutstring `json:"timeout,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Disabled") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Disabled") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1Webhook: Webhooks host the developer'sbusiness logic. During a session, webhooks allow the developer to use thedata extracted by Dialogflow's natural language processing to generatedynamic responses, validate collected data, or trigger actions on thebackend.

func (GoogleCloudDialogflowCxV3beta1Webhook)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookGenericWebService

type GoogleCloudDialogflowCxV3beta1WebhookGenericWebService struct {// AllowedCaCerts: Optional. Specifies a list of allowed custom CA certificates// (in DER format) for HTTPS verification. This overrides the default SSL trust// store. If this is empty or unspecified, Dialogflow will use Google's default// trust store to verify certificates. N.B. Make sure the HTTPS server// certificates are signed with "subject alt name". For instance a certificate// can be self-signed using the following command, “` openssl x509 -req -days// 200 -in example.com.csr \ -signkey example.com.key \ -out example.com.crt \// -extfile <(printf "\nsubjectAltName='DNS:www.example.com'") “`AllowedCaCerts []string `json:"allowedCaCerts,omitempty"`// HttpMethod: Optional. HTTP method for the flexible webhook calls. Standard// webhook always uses POST.//// Possible values://   "HTTP_METHOD_UNSPECIFIED" - HTTP method not specified.//   "POST" - HTTP POST Method.//   "GET" - HTTP GET Method.//   "HEAD" - HTTP HEAD Method.//   "PUT" - HTTP PUT Method.//   "DELETE" - HTTP DELETE Method.//   "PATCH" - HTTP PATCH Method.//   "OPTIONS" - HTTP OPTIONS Method.HttpMethodstring `json:"httpMethod,omitempty"`// OauthConfig: Optional. The OAuth configuration of the webhook. If specified,// Dialogflow will initiate the OAuth client credential flow to exchange an// access token from the 3rd party platform and put it in the auth header.OauthConfig *GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig `json:"oauthConfig,omitempty"`// ParameterMapping: Optional. Maps the values extracted from specific fields// of the flexible webhook response into session parameters. - Key: session// parameter name - Value: field path in the webhook responseParameterMapping map[string]string `json:"parameterMapping,omitempty"`// Password: The password for HTTP Basic authentication.Passwordstring `json:"password,omitempty"`// RequestBody: Optional. Defines a custom JSON object as request body to send// to flexible webhook.RequestBodystring `json:"requestBody,omitempty"`// RequestHeaders: The HTTP request headers to send together with webhook// requests.RequestHeaders map[string]string `json:"requestHeaders,omitempty"`// SecretVersionForUsernamePassword: Optional. The SecretManager secret version// resource storing the username:password pair for HTTP Basic authentication.// Format: `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForUsernamePasswordstring `json:"secretVersionForUsernamePassword,omitempty"`// SecretVersionsForRequestHeaders: Optional. The HTTP request headers to send// together with webhook requests. Header values are stored in SecretManager// secret versions. When the same header name is specified in both// `request_headers` and `secret_versions_for_request_headers`, the value in// `secret_versions_for_request_headers` will be used.SecretVersionsForRequestHeaders map[string]GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue `json:"secretVersionsForRequestHeaders,omitempty"`// ServiceAccountAuthConfig: Optional. Configuration for service account// authentication.ServiceAccountAuthConfig *GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig `json:"serviceAccountAuthConfig,omitempty"`// ServiceAgentAuth: Optional. Indicate the auth token type generated from the// Diglogflow service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).// The generated token is sent in the Authorization header.//// Possible values://   "SERVICE_AGENT_AUTH_UNSPECIFIED" - Service agent auth type unspecified.// Default to ID_TOKEN.//   "NONE" - No token used.//   "ID_TOKEN" - Use [ID// token](https://cloud.google.com/docs/authentication/token-types#id)// generated from service agent. This can be used to access Cloud Function and// Cloud Run after you grant Invoker role to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.//   "ACCESS_TOKEN" - Use [access// token](https://cloud.google.com/docs/authentication/token-types#access)// generated from service agent. This can be used to access other Google Cloud// APIs after you grant required roles to// `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`.ServiceAgentAuthstring `json:"serviceAgentAuth,omitempty"`// Uri: Required. The webhook URI for receiving POST requests. It must use// https protocol.Uristring `json:"uri,omitempty"`// Username: The user name for HTTP Basic authentication.Usernamestring `json:"username,omitempty"`// WebhookType: Optional. Type of the webhook.//// Possible values://   "WEBHOOK_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "STANDARD" - Represents a standard webhook.//   "FLEXIBLE" - Represents a flexible webhook.WebhookTypestring `json:"webhookType,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowedCaCerts") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowedCaCerts") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookGenericWebService: Representsconfiguration for a generic web service.

func (GoogleCloudDialogflowCxV3beta1WebhookGenericWebService)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfigadded inv0.171.0

type GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig struct {// ClientId: Required. The client ID provided by the 3rd party platform.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. The client secret provided by the 3rd party// platform.ClientSecretstring `json:"clientSecret,omitempty"`// Scopes: Optional. The OAuth scopes to grant.Scopes []string `json:"scopes,omitempty"`// SecretVersionForClientSecret: Optional. The name of the SecretManager secret// version resource storing the client secret. If this field is set, the// `client_secret` field will be ignored. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionForClientSecretstring `json:"secretVersionForClientSecret,omitempty"`// TokenEndpoint: Required. The token endpoint provided by the 3rd party// platform to exchange an access token.TokenEndpointstring `json:"tokenEndpoint,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ClientId") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig:Represents configuration of OAuth client credential flow for 3rd party APIauthentication.

func (GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig)MarshalJSONadded inv0.171.0

typeGoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValueadded inv0.229.0

type GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue struct {// SecretVersion: Required. The SecretManager secret version resource storing// the header value. Format:// `projects/{project}/secrets/{secret}/versions/{version}`SecretVersionstring `json:"secretVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "SecretVersion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SecretVersion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue: Represents the value of an HTTP header stored in a SecretManager secretversion.

func (GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfigadded inv0.255.0

type GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig struct {// ServiceAccount: Required. The email address of the service account used to// authenticate the webhook call. Dialogflow uses this service account to// exchange an access token and the access token is then sent in the// `Authorization` header of the webhook request. The service account must have// the `roles/iam.serviceAccountTokenCreator` role granted to the Dialogflow// service agent// (https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).ServiceAccountstring `json:"serviceAccount,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAccount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ServiceAccount") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig: Configuration for authentication using a service account.

func (GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig)MarshalJSONadded inv0.255.0

typeGoogleCloudDialogflowCxV3beta1WebhookRequest

type GoogleCloudDialogflowCxV3beta1WebhookRequest struct {// DetectIntentResponseId: Always present. The unique identifier of the// DetectIntentResponse that will be returned to the API caller.DetectIntentResponseIdstring `json:"detectIntentResponseId,omitempty"`// DtmfDigits: If DTMF was provided as input, this field will contain the DTMF// digits.DtmfDigitsstring `json:"dtmfDigits,omitempty"`// FulfillmentInfo: Always present. Information about the fulfillment that// triggered this webhook call.FulfillmentInfo *GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo `json:"fulfillmentInfo,omitempty"`// IntentInfo: Information about the last matched intent.IntentInfo *GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo `json:"intentInfo,omitempty"`// LanguageCode: The language code specified in the original request.LanguageCodestring `json:"languageCode,omitempty"`// LanguageInfo: Information about the language of the request.LanguageInfo *GoogleCloudDialogflowCxV3beta1LanguageInfo `json:"languageInfo,omitempty"`// Messages: The list of rich message responses to present to the user. Webhook// can choose to append or replace this list in// WebhookResponse.fulfillment_response;Messages []*GoogleCloudDialogflowCxV3beta1ResponseMessage `json:"messages,omitempty"`// PageInfo: Information about page status.PageInfo *GoogleCloudDialogflowCxV3beta1PageInfo `json:"pageInfo,omitempty"`// Payload: Custom data set in QueryParameters.payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SentimentAnalysisResult: The sentiment analysis result of the current user// request. The field is filled when sentiment analysis is configured to be// enabled for the request.SentimentAnalysisResult *GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult `json:"sentimentAnalysisResult,omitempty"`// SessionInfo: Information about session status.SessionInfo *GoogleCloudDialogflowCxV3beta1SessionInfo `json:"sessionInfo,omitempty"`// Text: If natural language text was provided as input, this field will// contain a copy of the text.Textstring `json:"text,omitempty"`// Transcript: If natural language speech audio was provided as input, this// field will contain the transcript for the audio.Transcriptstring `json:"transcript,omitempty"`// TriggerEvent: If an event was provided as input, this field will contain the// name of the event.TriggerEventstring `json:"triggerEvent,omitempty"`// TriggerIntent: If an intent was provided as input, this field will contain a// copy of the intent identifier. Format:// `projects//locations//agents//intents/`.TriggerIntentstring `json:"triggerIntent,omitempty"`// ForceSendFields is a list of field names (e.g. "DetectIntentResponseId") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DetectIntentResponseId") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookRequest: The request message for awebhook call. The request is sent as a JSON object and the field names willbe presented in camel cases. You may see undocumented fields in an actualrequest. These fields are used internally by Dialogflow and should beignored.

func (GoogleCloudDialogflowCxV3beta1WebhookRequest)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo

type GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo struct {// Tag: Always present. The value of the Fulfillment.tag field will be// populated in this field by Dialogflow when the associated webhook is called.// The tag is typically used by the webhook service to identify which// fulfillment is being called, but it could be used for other purposes.Tagstring `json:"tag,omitempty"`// ForceSendFields is a list of field names (e.g. "Tag") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Tag") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo: Representsfulfillment information communicated to the webhook.

func (GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo

type GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo struct {// Confidence: The confidence of the matched intent. Values range from 0.0// (completely uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// DisplayName: Always present. The display name of the last matched intent.DisplayNamestring `json:"displayName,omitempty"`// LastMatchedIntent: Always present. The unique identifier of the last matched// intent. Format: `projects//locations//agents//intents/`.LastMatchedIntentstring `json:"lastMatchedIntent,omitempty"`// Parameters: Parameters identified as a result of intent matching. This is a// map of the name of the identified parameter to the value of the parameter// identified from the user's utterance. All parameters defined in the matched// intent that are identified will be surfaced here.Parameters map[string]GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo: Represents intentinformation communicated to the webhook.

func (GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo)MarshalJSON

func (*GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo)UnmarshalJSONadded inv0.39.0

typeGoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue

type GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue struct {// OriginalValue: Always present. Original text value extracted from user// utterance.OriginalValuestring `json:"originalValue,omitempty"`// ResolvedValue: Always present. Structured value for the parameter extracted// from user utterance.ResolvedValue interface{} `json:"resolvedValue,omitempty"`// ForceSendFields is a list of field names (e.g. "OriginalValue") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OriginalValue") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue:Represents a value for an intent parameter.

func (GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResultadded inv0.41.0

type GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult struct {// Magnitude: A non-negative number in the [0, +inf) range, which represents// the absolute magnitude of sentiment, regardless of score (positive or// negative).Magnitudefloat64 `json:"magnitude,omitempty"`// Score: Sentiment score between -1.0 (negative sentiment) and 1.0 (positive// sentiment).Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Magnitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Magnitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult:Represents the result of sentiment analysis.

func (GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult)MarshalJSONadded inv0.41.0

func (*GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult)UnmarshalJSONadded inv0.41.0

typeGoogleCloudDialogflowCxV3beta1WebhookResponse

type GoogleCloudDialogflowCxV3beta1WebhookResponse struct {// FulfillmentResponse: The fulfillment response to send to the user. This// field can be omitted by the webhook if it does not intend to send any// response to the user.FulfillmentResponse *GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse `json:"fulfillmentResponse,omitempty"`// PageInfo: Information about page status. This field can be omitted by the// webhook if it does not intend to modify page status.PageInfo *GoogleCloudDialogflowCxV3beta1PageInfo `json:"pageInfo,omitempty"`// Payload: Value to append directly to QueryResult.webhook_payloads.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SessionInfo: Information about session status. This field can be omitted by// the webhook if it does not intend to modify session status.SessionInfo *GoogleCloudDialogflowCxV3beta1SessionInfo `json:"sessionInfo,omitempty"`// TargetFlow: The target flow to transition to. Format:// `projects//locations//agents//flows/`.TargetFlowstring `json:"targetFlow,omitempty"`// TargetPage: The target page to transition to. Format:// `projects//locations//agents//flows//pages/`.TargetPagestring `json:"targetPage,omitempty"`// ForceSendFields is a list of field names (e.g. "FulfillmentResponse") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FulfillmentResponse") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookResponse: The response message for awebhook call.

func (GoogleCloudDialogflowCxV3beta1WebhookResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse

type GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse struct {// MergeBehavior: Merge behavior for `messages`.//// Possible values://   "MERGE_BEHAVIOR_UNSPECIFIED" - Not specified. `APPEND` will be used.//   "APPEND" - `messages` will be appended to the list of messages waiting to// be sent to the user.//   "REPLACE" - `messages` will replace the list of messages waiting to be// sent to the user.MergeBehaviorstring `json:"mergeBehavior,omitempty"`// Messages: The list of rich message responses to present to the user.Messages []*GoogleCloudDialogflowCxV3beta1ResponseMessage `json:"messages,omitempty"`// ForceSendFields is a list of field names (e.g. "MergeBehavior") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MergeBehavior") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse: Representsa fulfillment response to the user.

func (GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse)MarshalJSON

typeGoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfigadded inv0.47.0

type GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig struct {// GenericWebService: Generic Service configuration of this webhook.GenericWebService *GoogleCloudDialogflowCxV3beta1WebhookGenericWebService `json:"genericWebService,omitempty"`// Service: Required. The name of Service Directory// (https://cloud.google.com/service-directory) service. Format:// `projects//locations//namespaces//services/`. `Location ID` of the service// directory must be the same as the location of the agent.Servicestring `json:"service,omitempty"`// ForceSendFields is a list of field names (e.g. "GenericWebService") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GenericWebService") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig: Representsconfiguration for a Service Directory(https://cloud.google.com/service-directory) service.

func (GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig)MarshalJSONadded inv0.47.0

typeGoogleCloudDialogflowV2AgentCoachingInstructionadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingInstruction struct {// AgentAction: Optional. The action that human agent should take. For example,// "apologize for the slow shipping". If the users only want to use agent// coaching for intent detection, agent_action can be emptyAgentActionstring `json:"agentAction,omitempty"`// Condition: Optional. The condition of the instruction. For example, "the// customer wants to cancel an order". If the users want the instruction to be// triggered unconditionally, the condition can be empty.Conditionstring `json:"condition,omitempty"`// DisplayDetails: Optional. The detailed description of this instruction.DisplayDetailsstring `json:"displayDetails,omitempty"`// DisplayName: Optional. Display name for the instruction.DisplayNamestring `json:"displayName,omitempty"`// DuplicateCheckResult: Output only. Duplication check for the// AgentCoachingInstruction.DuplicateCheckResult *GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// SystemAction: Optional. The action that system should take. For example,// "call GetOrderTime with order_number={order number provided by the// customer}". If the users don't have plugins or don't want to trigger// plugins, the system_action can be emptySystemActionstring `json:"systemAction,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingInstruction: Agent Coaching instructionsthat customer can configure.

func (GoogleCloudDialogflowV2AgentCoachingInstruction)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult struct {// DuplicateSuggestions: Output only. The duplicate suggestions.DuplicateSuggestions []*GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion `json:"duplicateSuggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateSuggestions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult:Duplication check for the suggestion.

func (GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion struct {// AnswerRecord: Output only. The answer record id of the past duplicate// suggestion.AnswerRecordstring `json:"answerRecord,omitempty"`// SimilarityScore: Output only. The similarity score of between the past and// current suggestion.SimilarityScorefloat64 `json:"similarityScore,omitempty"`// SuggestionIndex: Output only. The index of the duplicate suggestion in the// past suggestion list.SuggestionIndexint64 `json:"suggestionIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion: The duplicate suggestion details.

func (GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion)MarshalJSONadded inv0.252.0

func (*GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion)UnmarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestion struct {// AgentActionSuggestions: Optional. Suggested actions for the agent to take.AgentActionSuggestions []*GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion `json:"agentActionSuggestions,omitempty"`// ApplicableInstructions: Optional. Instructions applicable based on the// current context.ApplicableInstructions []*GoogleCloudDialogflowV2AgentCoachingInstruction `json:"applicableInstructions,omitempty"`// SampleResponses: Optional. Sample response for the Agent.SampleResponses []*GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse `json:"sampleResponses,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentActionSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentActionSuggestions") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestion: Suggestion for coachingagents.

func (GoogleCloudDialogflowV2AgentCoachingSuggestion)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion struct {// AgentAction: Optional. The suggested action for the agent.AgentActionstring `json:"agentAction,omitempty"`// DuplicateCheckResult: Output only. Duplicate check result for the agent// action suggestion.DuplicateCheckResult *GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// Sources: Output only. Sources for the agent action suggestion.Sources *GoogleCloudDialogflowV2AgentCoachingSuggestionSources `json:"sources,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion: Actionssuggested for the agent. This is based on applicable instructions.

func (GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult struct {// DuplicateSuggestions: Output only. The duplicate suggestions.DuplicateSuggestions []*GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion `json:"duplicateSuggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateSuggestions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult:Duplication check for the suggestion.

func (GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion struct {// AnswerRecord: Output only. The answer record id of the past duplicate// suggestion.AnswerRecordstring `json:"answerRecord,omitempty"`// SimilarityScore: Output only. The similarity score of between the past and// current suggestion.SimilarityScorefloat64 `json:"similarityScore,omitempty"`// Sources: Output only. Sources for the suggestion.Sources *GoogleCloudDialogflowV2AgentCoachingSuggestionSources `json:"sources,omitempty"`// SuggestionIndex: Output only. The index of the duplicate suggestion in the// past suggestion list.SuggestionIndexint64 `json:"suggestionIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion: The duplicate suggestion details. Keeping answer_record andsources together as they are identifiers for duplicate suggestions.

func (GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion)MarshalJSONadded inv0.252.0

func (*GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion)UnmarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponseadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse struct {// DuplicateCheckResult: Output only. Duplicate check result for the sample// response.DuplicateCheckResult *GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// ResponseText: Optional. Sample response for Agent in text.ResponseTextstring `json:"responseText,omitempty"`// Sources: Output only. Sources for the Sample Response.Sources *GoogleCloudDialogflowV2AgentCoachingSuggestionSources `json:"sources,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateCheckResult") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateCheckResult") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse: Sampleresponse that the agent can use. This could be based on applicableinstructions and ingested data from other systems.

func (GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AgentCoachingSuggestionSourcesadded inv0.252.0

type GoogleCloudDialogflowV2AgentCoachingSuggestionSources struct {// InstructionIndexes: Output only. Source instruction indexes for the// suggestion. This is the index of the applicable_instructions field.InstructionIndexes []int64 `json:"instructionIndexes,omitempty"`// ForceSendFields is a list of field names (e.g. "InstructionIndexes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InstructionIndexes") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AgentCoachingSuggestionSources: Sources for thesuggestion.

func (GoogleCloudDialogflowV2AgentCoachingSuggestionSources)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2AnnotatedMessagePart

type GoogleCloudDialogflowV2AnnotatedMessagePart struct {// EntityType: The Dialogflow system entity type// (https://cloud.google.com/dialogflow/docs/reference/system-entities) of this// message part. If this is empty, Dialogflow could not annotate the phrase// part with a system entity.EntityTypestring `json:"entityType,omitempty"`// FormattedValue: The Dialogflow system entity formatted value// (https://cloud.google.com/dialogflow/docs/reference/system-entities) of this// message part. For example for a system entity of type `@sys.unit-currency`,// this may contain: { "amount": 5, "currency": "USD" }FormattedValue interface{} `json:"formattedValue,omitempty"`// Text: A part of a message possibly annotated with an entity.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2AnnotatedMessagePart: Represents a part of a messagepossibly annotated with an entity. The part can be an entity or purely apart of the message between two entities or message start/end.

func (GoogleCloudDialogflowV2AnnotatedMessagePart)MarshalJSON

typeGoogleCloudDialogflowV2ArticleAnsweradded inv0.42.0

type GoogleCloudDialogflowV2ArticleAnswer struct {// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Confidence: Article match confidence. The system's confidence score that// this article is a good match for this conversation, as a value from 0.0// (completely uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// Metadata: A map that contains metadata about the answer and the document// from which it originates.Metadata map[string]string `json:"metadata,omitempty"`// Snippets: Article snippets.Snippets []string `json:"snippets,omitempty"`// Title: The article title.Titlestring `json:"title,omitempty"`// Uri: The article URI.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ArticleAnswer: Represents article answer.

func (GoogleCloudDialogflowV2ArticleAnswer)MarshalJSONadded inv0.42.0

func (*GoogleCloudDialogflowV2ArticleAnswer)UnmarshalJSONadded inv0.42.0

func (s *GoogleCloudDialogflowV2ArticleAnswer) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2ArticleSuggestionModelMetadataadded inv0.71.0

type GoogleCloudDialogflowV2ArticleSuggestionModelMetadata struct {// TrainingModelType: Optional. Type of the article suggestion model. If not// provided, model_type is used.//// Possible values://   "MODEL_TYPE_UNSPECIFIED" - ModelType unspecified.//   "SMART_REPLY_DUAL_ENCODER_MODEL" - ModelType smart reply dual encoder// model.//   "SMART_REPLY_BERT_MODEL" - ModelType smart reply bert model.TrainingModelTypestring `json:"trainingModelType,omitempty"`// ForceSendFields is a list of field names (e.g. "TrainingModelType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TrainingModelType") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ArticleSuggestionModelMetadata: Metadata for articlesuggestion models.

func (GoogleCloudDialogflowV2ArticleSuggestionModelMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2BatchUpdateEntityTypesResponse

type GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse struct {// EntityTypes: The collection of updated or created entity types.EntityTypes []*GoogleCloudDialogflowV2EntityType `json:"entityTypes,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityTypes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypes") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse: The response messagefor EntityTypes.BatchUpdateEntityTypes.

func (GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse)MarshalJSON

typeGoogleCloudDialogflowV2BatchUpdateIntentsResponse

type GoogleCloudDialogflowV2BatchUpdateIntentsResponse struct {// Intents: The collection of updated or created intents.Intents []*GoogleCloudDialogflowV2Intent `json:"intents,omitempty"`// ForceSendFields is a list of field names (e.g. "Intents") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Intents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2BatchUpdateIntentsResponse: The response message forIntents.BatchUpdateIntents.

func (GoogleCloudDialogflowV2BatchUpdateIntentsResponse)MarshalJSON

typeGoogleCloudDialogflowV2ClearSuggestionFeatureConfigOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2ClearSuggestionFeatureConfigOperationMetadata struct {// ConversationProfile: The resource name of the conversation profile. Format:// `projects//locations//conversationProfiles/`ConversationProfilestring `json:"conversationProfile,omitempty"`// CreateTime: Timestamp whe the request was created. The time is measured on// server side.CreateTimestring `json:"createTime,omitempty"`// ParticipantRole: Required. The participant role to remove the suggestion// feature config. Only HUMAN_AGENT or END_USER can be used.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// SuggestionFeatureType: Required. The type of the suggestion feature to// remove.//// Possible values://   "TYPE_UNSPECIFIED" - Unspecified feature type.//   "ARTICLE_SUGGESTION" - Run article suggestion model for chat.//   "FAQ" - Run FAQ model for chat.//   "SMART_REPLY" - Run smart reply model for chat.//   "CONVERSATION_SUMMARIZATION" - Run conversation summarization model for// chat.//   "KNOWLEDGE_SEARCH" - Run knowledge search with text input from agent or// text generated query.//   "KNOWLEDGE_ASSIST" - Run knowledge assist with automatic query generation.SuggestionFeatureTypestring `json:"suggestionFeatureType,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationProfile") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationProfile") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ClearSuggestionFeatureConfigOperationMetadata:Metadata for a ConversationProfiles.ClearSuggestionFeatureConfig operation.

func (GoogleCloudDialogflowV2ClearSuggestionFeatureConfigOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2Context

type GoogleCloudDialogflowV2Context struct {// LifespanCount: Optional. The number of conversational query requests after// which the context expires. The default is `0`. If set to `0`, the context// expires immediately. Contexts expire automatically after 20 minutes if there// are no matching queries.LifespanCountint64 `json:"lifespanCount,omitempty"`// Name: Required. The unique identifier of the context. Format:// `projects//agent/sessions//contexts/`, or// `projects//agent/environments//users//sessions//contexts/`. The `Context ID`// is always converted to lowercase, may only contain characters in// `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `Environment ID` is not// specified, we assume default 'draft' environment. If `User ID` is not// specified, we assume default '-' user. The following context names are// reserved for internal use by Dialogflow. You should not use these contexts// or create contexts with these names: * `__system_counters__` *// `*_id_dialog_context` * `*_dialog_params_size`Namestring `json:"name,omitempty"`// Parameters: Optional. The collection of parameters associated with this// context. Depending on your protocol or client library language, this is a// map, associative array, symbol table, dictionary, or JSON object composed of// a collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey// value: parameter name * MapValue type: If parameter's entity type is a// composite entity then use map, otherwise, depending on the parameter value// type, it could be one of string, number, boolean, null, list or map. *// MapValue value: If parameter's entity type is a composite entity then use// map from composite entity property names to property values, otherwise, use// parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "LifespanCount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LifespanCount") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2Context: Dialogflow contexts are similar to naturallanguage context. If a person says to you "they are orange", you needcontext in order to understand what "they" is referring to. Similarly, forDialogflow to handle an end-user expression like that, it needs to beprovided with context in order to correctly match an intent. Using contexts,you can control the flow of a conversation. You can configure contexts foran intent by setting input and output contexts, which are identified bystring names. When an intent is matched, any configured output contexts forthat intent become active. While any contexts are active, Dialogflow is morelikely to match intents that are configured with input contexts thatcorrespond to the currently active contexts. For more information aboutcontext, see the Contexts guide(https://cloud.google.com/dialogflow/docs/contexts-overview).

func (GoogleCloudDialogflowV2Context)MarshalJSON

func (sGoogleCloudDialogflowV2Context) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2ConversationEvent

type GoogleCloudDialogflowV2ConversationEvent struct {// Conversation: The unique identifier of the conversation this notification// refers to. Format: `projects//conversations/`.Conversationstring `json:"conversation,omitempty"`// ErrorStatus: More detailed information about an error. Only set for type// UNRECOVERABLE_ERROR_IN_PHONE_CALL.ErrorStatus *GoogleRpcStatus `json:"errorStatus,omitempty"`// NewMessagePayload: Payload of NEW_MESSAGE event.NewMessagePayload *GoogleCloudDialogflowV2Message `json:"newMessagePayload,omitempty"`// NewRecognitionResultPayload: Payload of NEW_RECOGNITION_RESULT event.NewRecognitionResultPayload *GoogleCloudDialogflowV2StreamingRecognitionResult `json:"newRecognitionResultPayload,omitempty"`// Type: The type of the event that this notification refers to.//// Possible values://   "TYPE_UNSPECIFIED" - Type not set.//   "CONVERSATION_STARTED" - A new conversation has been opened. This is fired// when a telephone call is answered, or a conversation is created via the API.//   "CONVERSATION_FINISHED" - An existing conversation has closed. This is// fired when a telephone call is terminated, or a conversation is closed via// the API. The event is fired for every CompleteConversation call, even if the// conversation is already closed.//   "HUMAN_INTERVENTION_NEEDED" - An existing conversation has received// notification from Dialogflow that human intervention is required.//   "NEW_MESSAGE" - An existing conversation has received a new message,// either from API or telephony. It is configured in// ConversationProfile.new_message_event_notification_config//   "NEW_RECOGNITION_RESULT" - An existing conversation has received a new// speech recognition result. This is mainly for delivering intermediate// transcripts. The notification is configured in// ConversationProfile.new_recognition_event_notification_config.//   "UNRECOVERABLE_ERROR" - Unrecoverable error during a telephone call. In// general non-recoverable errors only occur if something was misconfigured in// the ConversationProfile corresponding to the call. After a non-recoverable// error, Dialogflow may stop responding. We don't fire this event: * in an API// call because we can directly return the error, or, * when we can recover// from an error.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Conversation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conversation") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ConversationEvent: Represents a notification sent toPub/Sub subscribers for conversation lifecycle events.

func (GoogleCloudDialogflowV2ConversationEvent)MarshalJSON

typeGoogleCloudDialogflowV2ConversationModeladded inv0.71.0

type GoogleCloudDialogflowV2ConversationModel struct {// ArticleSuggestionModelMetadata: Metadata for article suggestion models.ArticleSuggestionModelMetadata *GoogleCloudDialogflowV2ArticleSuggestionModelMetadata `json:"articleSuggestionModelMetadata,omitempty"`// CreateTime: Output only. Creation time of this model.CreateTimestring `json:"createTime,omitempty"`// Datasets: Required. Datasets used to create model.Datasets []*GoogleCloudDialogflowV2InputDataset `json:"datasets,omitempty"`// DisplayName: Required. The display name of the model. At most 64 bytes long.DisplayNamestring `json:"displayName,omitempty"`// LanguageCode: Language code for the conversation model. If not specified,// the language is en-US. Language at ConversationModel should be set for all// non en-us languages. This should be a BCP-47// (https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example:// "en-US".LanguageCodestring `json:"languageCode,omitempty"`// Name: ConversationModel resource name. Format:// `projects//conversationModels/`Namestring `json:"name,omitempty"`// SatisfiesPzi: Output only. A read only boolean field reflecting Zone// Isolation status of the model.SatisfiesPzibool `json:"satisfiesPzi,omitempty"`// SatisfiesPzs: Output only. A read only boolean field reflecting Zone// Separation status of the model.SatisfiesPzsbool `json:"satisfiesPzs,omitempty"`// SmartReplyModelMetadata: Metadata for smart reply models.SmartReplyModelMetadata *GoogleCloudDialogflowV2SmartReplyModelMetadata `json:"smartReplyModelMetadata,omitempty"`// State: Output only. State of the model. A model can only serve prediction// requests after it gets deployed.//// Possible values://   "STATE_UNSPECIFIED" - Should not be used, an un-set enum has this value by// default.//   "CREATING" - Model being created.//   "UNDEPLOYED" - Model is not deployed but ready to deploy.//   "DEPLOYING" - Model is deploying.//   "DEPLOYED" - Model is deployed and ready to use.//   "UNDEPLOYING" - Model is undeploying.//   "DELETING" - Model is deleting.//   "FAILED" - Model is in error state. Not ready to deploy and use.//   "PENDING" - Model is being created but the training has not started, The// model may remain in this state until there is enough capacity to start// training.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g.// "ArticleSuggestionModelMetadata") to unconditionally include in API// requests. By default, fields with empty or default values are omitted from// API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ArticleSuggestionModelMetadata")// to include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ConversationModel: Represents a conversation model.

func (GoogleCloudDialogflowV2ConversationModel)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2CreateConversationDatasetOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata struct {// ConversationDataset: The resource name of the conversation dataset that will// be created. Format: `projects//locations//conversationDatasets/`ConversationDatasetstring `json:"conversationDataset,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationDataset") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationDataset") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata: Metadatafor CreateConversationDataset.

func (GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata)MarshalJSONadded inv0.96.0

typeGoogleCloudDialogflowV2CreateConversationModelEvaluationOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2CreateConversationModelEvaluationOperationMetadata struct {// ConversationModel: The resource name of the conversation model. Format:// `projects//locations//conversationModels/`ConversationModelstring `json:"conversationModel,omitempty"`// ConversationModelEvaluation: The resource name of the conversation model.// Format: `projects//locations//conversationModels//evaluations/`ConversationModelEvaluationstring `json:"conversationModelEvaluation,omitempty"`// CreateTime: Timestamp when the request to create conversation model was// submitted. The time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// State: State of CreateConversationModel operation.//// Possible values://   "STATE_UNSPECIFIED" - Operation status not specified.//   "INITIALIZING" - The operation is being prepared.//   "RUNNING" - The operation is running.//   "CANCELLED" - The operation is cancelled.//   "SUCCEEDED" - The operation has succeeded.//   "FAILED" - The operation has failed.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationModel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationModel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2CreateConversationModelEvaluationOperationMetadata:Metadata for a ConversationModels.CreateConversationModelEvaluationoperation.

func (GoogleCloudDialogflowV2CreateConversationModelEvaluationOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2CreateConversationModelOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2CreateConversationModelOperationMetadata struct {// ConversationModel: The resource name of the conversation model. Format:// `projects//conversationModels/`ConversationModelstring `json:"conversationModel,omitempty"`// CreateTime: Timestamp when the request to create conversation model is// submitted. The time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// State: State of CreateConversationModel operation.//// Possible values://   "STATE_UNSPECIFIED" - Invalid.//   "PENDING" - Request is submitted, but training has not started yet. The// model may remain in this state until there is enough capacity to start// training.//   "SUCCEEDED" - The training has succeeded.//   "FAILED" - The training has succeeded.//   "CANCELLED" - The training has been cancelled.//   "CANCELLING" - The training is in cancelling state.//   "TRAINING" - Custom model is training.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationModel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationModel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2CreateConversationModelOperationMetadata: Metadatafor a ConversationModels.CreateConversationModel operation.

func (GoogleCloudDialogflowV2CreateConversationModelOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2DeleteConversationDatasetOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2DeleteConversationDatasetOperationMetadata struct {}

GoogleCloudDialogflowV2DeleteConversationDatasetOperationMetadata: Metadatafor DeleteConversationDataset.

typeGoogleCloudDialogflowV2DeleteConversationModelOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2DeleteConversationModelOperationMetadata struct {// ConversationModel: The resource name of the conversation model. Format:// `projects//conversationModels/`ConversationModelstring `json:"conversationModel,omitempty"`// CreateTime: Timestamp when delete conversation model request was created.// The time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationModel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationModel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2DeleteConversationModelOperationMetadata: Metadatafor a ConversationModels.DeleteConversationModel operation.

func (GoogleCloudDialogflowV2DeleteConversationModelOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2DeployConversationModelOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2DeployConversationModelOperationMetadata struct {// ConversationModel: The resource name of the conversation model. Format:// `projects//conversationModels/`ConversationModelstring `json:"conversationModel,omitempty"`// CreateTime: Timestamp when request to deploy conversation model was// submitted. The time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationModel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationModel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2DeployConversationModelOperationMetadata: Metadatafor a ConversationModels.DeployConversationModel operation.

func (GoogleCloudDialogflowV2DeployConversationModelOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2EncryptionSpecadded inv0.149.0

type GoogleCloudDialogflowV2EncryptionSpec struct {// KmsKey: Required. The name of customer-managed encryption key that is used// to secure a resource and its sub-resources. If empty, the resource is// secured by the default Google encryption key. Only the key in the same// location as this resource is allowed to be used for encryption. Format:// `projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{key}`KmsKeystring `json:"kmsKey,omitempty"`// Name: Immutable. The resource name of the encryption key specification// resource. Format: projects/{project}/locations/{location}/encryptionSpecNamestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "KmsKey") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "KmsKey") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2EncryptionSpec: A customer-managed encryption keyspecification that can be applied to all created resources (e.g.Conversation).

func (GoogleCloudDialogflowV2EncryptionSpec)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2EntityType

type GoogleCloudDialogflowV2EntityType struct {// AutoExpansionMode: Optional. Indicates whether the entity type can be// automatically expanded.//// Possible values://   "AUTO_EXPANSION_MODE_UNSPECIFIED" - Auto expansion disabled for the// entity.//   "AUTO_EXPANSION_MODE_DEFAULT" - Allows an agent to recognize values that// have not been explicitly listed in the entity.AutoExpansionModestring `json:"autoExpansionMode,omitempty"`// DisplayName: Required. The name of the entity type.DisplayNamestring `json:"displayName,omitempty"`// EnableFuzzyExtraction: Optional. Enables fuzzy entity extraction during// classification.EnableFuzzyExtractionbool `json:"enableFuzzyExtraction,omitempty"`// Entities: Optional. The collection of entity entries associated with the// entity type.Entities []*GoogleCloudDialogflowV2EntityTypeEntity `json:"entities,omitempty"`// Kind: Required. Indicates the kind of entity type.//// Possible values://   "KIND_UNSPECIFIED" - Not specified. This value should be never used.//   "KIND_MAP" - Map entity types allow mapping of a group of synonyms to a// reference value.//   "KIND_LIST" - List entity types contain a set of entries that do not map// to reference values. However, list entity types can contain references to// other entity types (with or without aliases).//   "KIND_REGEXP" - Regexp entity types allow to specify regular expressions// in entries values.Kindstring `json:"kind,omitempty"`// Name: The unique identifier of the entity type. Required for// EntityTypes.UpdateEntityType and EntityTypes.BatchUpdateEntityTypes methods.// Format: `projects//agent/entityTypes/`.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "AutoExpansionMode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AutoExpansionMode") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2EntityType: Each intent parameter has a type, calledthe entity type, which dictates exactly how data from an end-user expressionis extracted. Dialogflow provides predefined system entities that can matchmany common types of data. For example, there are system entities formatching dates, times, colors, email addresses, and so on. You can alsocreate your own custom entities for matching custom data. For example, youcould define a vegetable entity that can match the types of vegetablesavailable for purchase with a grocery store agent. For more information, seethe Entity guide(https://cloud.google.com/dialogflow/docs/entities-overview).

func (GoogleCloudDialogflowV2EntityType)MarshalJSON

func (sGoogleCloudDialogflowV2EntityType) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2EntityTypeEntity

type GoogleCloudDialogflowV2EntityTypeEntity struct {// Synonyms: Required. A collection of value synonyms. For example, if the// entity type is *vegetable*, and `value` is *scallions*, a synonym could be// *green onions*. For `KIND_LIST` entity types: * This collection must contain// exactly one synonym equal to `value`.Synonyms []string `json:"synonyms,omitempty"`// Value: Required. The primary value associated with this entity entry. For// example, if the entity type is *vegetable*, the value could be *scallions*.// For `KIND_MAP` entity types: * A reference value to be used in place of// synonyms. For `KIND_LIST` entity types: * A string that can contain// references to other entity types (with or without aliases).Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Synonyms") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Synonyms") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2EntityTypeEntity: An **entity entry** for anassociated entity type.

func (GoogleCloudDialogflowV2EntityTypeEntity)MarshalJSON

typeGoogleCloudDialogflowV2EventInput

type GoogleCloudDialogflowV2EventInput struct {// LanguageCode: Required. The language of this query. See Language Support// (https://cloud.google.com/dialogflow/docs/reference/language) for a list of// the currently supported language codes. Note that queries in the same// session do not necessarily need to specify the same language. This field is// ignored when used in the context of a WebhookResponse.followup_event_input// field, because the language was already defined in the originating detect// intent request.LanguageCodestring `json:"languageCode,omitempty"`// Name: Required. The unique identifier of the event.Namestring `json:"name,omitempty"`// Parameters: The collection of parameters associated with the event.// Depending on your protocol or client library language, this is a map,// associative array, symbol table, dictionary, or JSON object composed of a// collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey// value: parameter name * MapValue type: If parameter's entity type is a// composite entity then use map, otherwise, depending on the parameter value// type, it could be one of string, number, boolean, null, list or map. *// MapValue value: If parameter's entity type is a composite entity then use// map from composite entity property names to property values, otherwise, use// parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2EventInput: Events allow for matching intents byevent name instead of the natural language input. For instance, input “ cantrigger a personalized welcome response. The parameter `name` may be used bythe agent in the response: "Hello #welcome_event.name! What can I do foryou today?".

func (GoogleCloudDialogflowV2EventInput)MarshalJSON

func (sGoogleCloudDialogflowV2EventInput) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2ExportAgentResponse

type GoogleCloudDialogflowV2ExportAgentResponse struct {// AgentContent: Zip compressed raw byte content for agent.AgentContentstring `json:"agentContent,omitempty"`// AgentUri: The URI to a file containing the exported agent. This field is// populated only if `agent_uri` is specified in `ExportAgentRequest`.AgentUristring `json:"agentUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ExportAgentResponse: The response message forAgents.ExportAgent.

func (GoogleCloudDialogflowV2ExportAgentResponse)MarshalJSON

typeGoogleCloudDialogflowV2ExportOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2ExportOperationMetadata struct {// ExportedGcsDestination: Cloud Storage file path of the exported data.ExportedGcsDestination *GoogleCloudDialogflowV2GcsDestination `json:"exportedGcsDestination,omitempty"`// ForceSendFields is a list of field names (e.g. "ExportedGcsDestination") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExportedGcsDestination") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ExportOperationMetadata: Metadata related to theExport Data Operations (e.g. ExportDocument).

func (GoogleCloudDialogflowV2ExportOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2FaqAnsweradded inv0.42.0

type GoogleCloudDialogflowV2FaqAnswer struct {// Answer: The piece of text from the `source` knowledge base document.Answerstring `json:"answer,omitempty"`// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Confidence: The system's confidence score that this Knowledge answer is a// good match for this conversational query, range from 0.0 (completely// uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// Metadata: A map that contains metadata about the answer and the document// from which it originates.Metadata map[string]string `json:"metadata,omitempty"`// Question: The corresponding FAQ question.Questionstring `json:"question,omitempty"`// Source: Indicates which Knowledge Document this answer was extracted from.// Format: `projects//locations//agent/knowledgeBases//documents/`.Sourcestring `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "Answer") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Answer") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2FaqAnswer: Represents answer from "frequently askedquestions".

func (GoogleCloudDialogflowV2FaqAnswer)MarshalJSONadded inv0.42.0

func (sGoogleCloudDialogflowV2FaqAnswer) MarshalJSON() ([]byte,error)

func (*GoogleCloudDialogflowV2FaqAnswer)UnmarshalJSONadded inv0.42.0

func (s *GoogleCloudDialogflowV2FaqAnswer) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2FreeFormSuggestionadded inv0.226.0

type GoogleCloudDialogflowV2FreeFormSuggestion struct {// Response: Required. Free form suggestion.Responsestring `json:"response,omitempty"`// ForceSendFields is a list of field names (e.g. "Response") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Response") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2FreeFormSuggestion: Suggestion generated using freeform generator.

func (GoogleCloudDialogflowV2FreeFormSuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2GcsDestinationadded inv0.71.0

type GoogleCloudDialogflowV2GcsDestination struct {// Uri: The Google Cloud Storage URIs for the output. A URI is of the form:// `gs://bucket/object-prefix-or-name` Whether a prefix or name is used depends// on the use case. The requesting user must have "write-permission" to the// bucket.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2GcsDestination: Google Cloud Storage location for theoutput.

func (GoogleCloudDialogflowV2GcsDestination)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2GenerateSuggestionsResponseadded inv0.226.0

type GoogleCloudDialogflowV2GenerateSuggestionsResponse struct {// GeneratorSuggestionAnswers: The answers generated for the conversation based// on context.GeneratorSuggestionAnswers []*GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer `json:"generatorSuggestionAnswers,omitempty"`// LatestMessage: The name of the latest conversation message used as context// for compiling suggestion. Format:// `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "GeneratorSuggestionAnswers")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GeneratorSuggestionAnswers") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2GenerateSuggestionsResponse: The response message forConversations.GenerateSuggestions.

func (GoogleCloudDialogflowV2GenerateSuggestionsResponse)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnsweradded inv0.226.0

type GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer struct {// AnswerRecord: Answer record that uniquely identifies the suggestion. This// can be used to provide suggestion feedback.AnswerRecordstring `json:"answerRecord,omitempty"`// GeneratorSuggestion: Suggestion details.GeneratorSuggestion *GoogleCloudDialogflowV2GeneratorSuggestion `json:"generatorSuggestion,omitempty"`// SourceGenerator: The name of the generator used to generate this suggestion.// Format: `projects//locations//generators/`.SourceGeneratorstring `json:"sourceGenerator,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer:A GeneratorSuggestion answer.

func (GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2GeneratorSuggestionadded inv0.226.0

type GoogleCloudDialogflowV2GeneratorSuggestion struct {// AgentCoachingSuggestion: Optional. Suggestion to coach the agent.AgentCoachingSuggestion *GoogleCloudDialogflowV2AgentCoachingSuggestion `json:"agentCoachingSuggestion,omitempty"`// FreeFormSuggestion: Optional. Free form suggestion.FreeFormSuggestion *GoogleCloudDialogflowV2FreeFormSuggestion `json:"freeFormSuggestion,omitempty"`// SummarySuggestion: Optional. Suggested summary.SummarySuggestion *GoogleCloudDialogflowV2SummarySuggestion `json:"summarySuggestion,omitempty"`// ToolCallInfo: Optional. List of request and response for tool calls// executed.ToolCallInfo []*GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo `json:"toolCallInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentCoachingSuggestion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentCoachingSuggestion") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2GeneratorSuggestion: Suggestion generated using aGenerator.

func (GoogleCloudDialogflowV2GeneratorSuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2GeneratorSuggestionToolCallInfoadded inv0.229.0

type GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo struct {// ToolCall: Required. Request for a tool call.ToolCall *GoogleCloudDialogflowV2ToolCall `json:"toolCall,omitempty"`// ToolCallResult: Required. Response for a tool call.ToolCallResult *GoogleCloudDialogflowV2ToolCallResult `json:"toolCallResult,omitempty"`// ForceSendFields is a list of field names (e.g. "ToolCall") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ToolCall") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo: Request and responsefor a tool call.

func (GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2HumanAgentAssistantEventadded inv0.42.0

type GoogleCloudDialogflowV2HumanAgentAssistantEvent struct {// Conversation: The conversation this notification refers to. Format:// `projects//conversations/`.Conversationstring `json:"conversation,omitempty"`// Participant: The participant that the suggestion is compiled for. Format:// `projects//conversations//participants/`. It will not be set in legacy// workflow.Participantstring `json:"participant,omitempty"`// SuggestionResults: The suggestion results payload that this notification// refers to.SuggestionResults []*GoogleCloudDialogflowV2SuggestionResult `json:"suggestionResults,omitempty"`// ForceSendFields is a list of field names (e.g. "Conversation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conversation") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2HumanAgentAssistantEvent: Represents a notificationsent to Cloud Pub/Sub subscribers for human agent assistant events in aspecific conversation.

func (GoogleCloudDialogflowV2HumanAgentAssistantEvent)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2ImportConversationDataOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2ImportConversationDataOperationMetadata struct {// ConversationDataset: The resource name of the imported conversation dataset.// Format: `projects//locations//conversationDatasets/`ConversationDatasetstring `json:"conversationDataset,omitempty"`// CreateTime: Timestamp when import conversation data request was created. The// time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// PartialFailures: Partial failures are failures that don't fail the whole// long running operation, e.g. single files that couldn't be read.PartialFailures []*GoogleRpcStatus `json:"partialFailures,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationDataset") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationDataset") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ImportConversationDataOperationMetadata: Metadata fora ConversationDatasets.ImportConversationData operation.

func (GoogleCloudDialogflowV2ImportConversationDataOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2ImportConversationDataOperationResponseadded inv0.71.0

type GoogleCloudDialogflowV2ImportConversationDataOperationResponse struct {// ConversationDataset: The resource name of the imported conversation dataset.// Format: `projects//locations//conversationDatasets/`ConversationDatasetstring `json:"conversationDataset,omitempty"`// ImportCount: Number of conversations imported successfully.ImportCountint64 `json:"importCount,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationDataset") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationDataset") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ImportConversationDataOperationResponse: Responseused for ConversationDatasets.ImportConversationData long running operation.

func (GoogleCloudDialogflowV2ImportConversationDataOperationResponse)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2ImportDocumentsResponseadded inv0.33.0

type GoogleCloudDialogflowV2ImportDocumentsResponse struct {// Warnings: Includes details about skipped documents or any other warnings.Warnings []*GoogleRpcStatus `json:"warnings,omitempty"`// ForceSendFields is a list of field names (e.g. "Warnings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Warnings") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ImportDocumentsResponse: Response message forDocuments.ImportDocuments.

func (GoogleCloudDialogflowV2ImportDocumentsResponse)MarshalJSONadded inv0.33.0

typeGoogleCloudDialogflowV2InitializeEncryptionSpecMetadataadded inv0.149.0

type GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata struct {// Request: Output only. The original request for initialization.Request *GoogleCloudDialogflowV2InitializeEncryptionSpecRequest `json:"request,omitempty"`// ForceSendFields is a list of field names (e.g. "Request") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Request") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata: Metadata forinitializing a location-level encryption specification.

func (GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2InitializeEncryptionSpecRequestadded inv0.149.0

type GoogleCloudDialogflowV2InitializeEncryptionSpecRequest struct {// EncryptionSpec: Required. The encryption spec used for CMEK encryption. It// is required that the kms key is in the same region as the endpoint. The same// key will be used for all provisioned resources, if encryption is available.// If the kms_key_name is left empty, no encryption will be enforced.EncryptionSpec *GoogleCloudDialogflowV2EncryptionSpec `json:"encryptionSpec,omitempty"`// ForceSendFields is a list of field names (e.g. "EncryptionSpec") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EncryptionSpec") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2InitializeEncryptionSpecRequest: The request toinitialize a location-level encryption specification.

func (GoogleCloudDialogflowV2InitializeEncryptionSpecRequest)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2InputDatasetadded inv0.71.0

type GoogleCloudDialogflowV2InputDataset struct {// Dataset: Required. ConversationDataset resource name. Format:// `projects//locations//conversationDatasets/`Datasetstring `json:"dataset,omitempty"`// ForceSendFields is a list of field names (e.g. "Dataset") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Dataset") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2InputDataset: InputDataset used to create model or doevaluation. NextID:5

func (GoogleCloudDialogflowV2InputDataset)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2Intent

type GoogleCloudDialogflowV2Intent struct {// Action: Optional. The name of the action associated with the intent. Note:// The action name must not contain whitespaces.Actionstring `json:"action,omitempty"`// DefaultResponsePlatforms: Optional. The list of platforms for which the// first responses will be copied from the messages in PLATFORM_UNSPECIFIED// (i.e. default platform).//// Possible values://   "PLATFORM_UNSPECIFIED" - Default platform.//   "FACEBOOK" - Facebook.//   "SLACK" - Slack.//   "TELEGRAM" - Telegram.//   "KIK" - Kik.//   "SKYPE" - Skype.//   "LINE" - Line.//   "VIBER" - Viber.//   "ACTIONS_ON_GOOGLE" - Google Assistant See [Dialogflow webhook// format](https://developers.google.com/assistant/actions/build/json/dialogflow// -webhook-json)//   "GOOGLE_HANGOUTS" - Google Hangouts.DefaultResponsePlatforms []string `json:"defaultResponsePlatforms,omitempty"`// DisplayName: Required. The name of this intent.DisplayNamestring `json:"displayName,omitempty"`// EndInteraction: Optional. Indicates that this intent ends an interaction.// Some integrations (e.g., Actions on Google or Dialogflow phone gateway) use// this information to close interaction with an end user. Default is false.EndInteractionbool `json:"endInteraction,omitempty"`// Events: Optional. The collection of event names that trigger the intent. If// the collection of input contexts is not empty, all of the contexts must be// present in the active user session for an event to trigger this intent.// Event names are limited to 150 characters.Events []string `json:"events,omitempty"`// FollowupIntentInfo: Output only. Read-only. Information about all followup// intents that have this intent as a direct or indirect parent. We populate// this field only in the output.FollowupIntentInfo []*GoogleCloudDialogflowV2IntentFollowupIntentInfo `json:"followupIntentInfo,omitempty"`// InputContextNames: Optional. The list of context names required for this// intent to be triggered. Format: `projects//agent/sessions/-/contexts/`.InputContextNames []string `json:"inputContextNames,omitempty"`// IsFallback: Optional. Indicates whether this is a fallback intent.IsFallbackbool `json:"isFallback,omitempty"`// LiveAgentHandoff: Optional. Indicates that a live agent should be brought in// to handle the interaction with the user. In most cases, when you set this// flag to true, you would also want to set end_interaction to true as well.// Default is false.LiveAgentHandoffbool `json:"liveAgentHandoff,omitempty"`// Messages: Optional. The collection of rich messages corresponding to the// `Response` field in the Dialogflow console.Messages []*GoogleCloudDialogflowV2IntentMessage `json:"messages,omitempty"`// MlDisabled: Optional. Indicates whether Machine Learning is disabled for the// intent. Note: If `ml_disabled` setting is set to true, then this intent is// not taken into account during inference in `ML ONLY` match mode. Also,// auto-markup in the UI is turned off.MlDisabledbool `json:"mlDisabled,omitempty"`// Name: Optional. The unique identifier of this intent. Required for// Intents.UpdateIntent and Intents.BatchUpdateIntents methods. Format:// `projects//agent/intents/`.Namestring `json:"name,omitempty"`// OutputContexts: Optional. The collection of contexts that are activated when// the intent is matched. Context messages in this collection should not set// the parameters field. Setting the `lifespan_count` to 0 will reset the// context when the intent is matched. Format:// `projects//agent/sessions/-/contexts/`.OutputContexts []*GoogleCloudDialogflowV2Context `json:"outputContexts,omitempty"`// Parameters: Optional. The collection of parameters associated with the// intent.Parameters []*GoogleCloudDialogflowV2IntentParameter `json:"parameters,omitempty"`// ParentFollowupIntentName: Read-only after creation. The unique identifier of// the parent intent in the chain of followup intents. You can set this field// when creating an intent, for example with CreateIntent or// BatchUpdateIntents, in order to make this intent a followup intent. It// identifies the parent followup intent. Format: `projects//agent/intents/`.ParentFollowupIntentNamestring `json:"parentFollowupIntentName,omitempty"`// Priority: Optional. The priority of this intent. Higher numbers represent// higher priorities. - If the supplied value is unspecified or 0, the service// translates the value to 500,000, which corresponds to the `Normal` priority// in the console. - If the supplied value is negative, the intent is ignored// in runtime detect intent requests.Priorityint64 `json:"priority,omitempty"`// ResetContexts: Optional. Indicates whether to delete all contexts in the// current session when this intent is matched.ResetContextsbool `json:"resetContexts,omitempty"`// RootFollowupIntentName: Output only. Read-only. The unique identifier of the// root intent in the chain of followup intents. It identifies the correct// followup intents chain for this intent. We populate this field only in the// output. Format: `projects//agent/intents/`.RootFollowupIntentNamestring `json:"rootFollowupIntentName,omitempty"`// TrainingPhrases: Optional. The collection of examples that the agent is// trained on.TrainingPhrases []*GoogleCloudDialogflowV2IntentTrainingPhrase `json:"trainingPhrases,omitempty"`// WebhookState: Optional. Indicates whether webhooks are enabled for the// intent.//// Possible values://   "WEBHOOK_STATE_UNSPECIFIED" - Webhook is disabled in the agent and in the// intent.//   "WEBHOOK_STATE_ENABLED" - Webhook is enabled in the agent and in the// intent.//   "WEBHOOK_STATE_ENABLED_FOR_SLOT_FILLING" - Webhook is enabled in the agent// and in the intent. Also, each slot filling prompt is forwarded to the// webhook.WebhookStatestring `json:"webhookState,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2Intent: An intent categorizes an end-user's intentionfor one conversation turn. For each agent, you define many intents, whereyour combined intents can handle a complete conversation. When an end-userwrites or says something, referred to as an end-user expression or end-userinput, Dialogflow matches the end-user input to the best intent in youragent. Matching an intent is also known as intent classification. For moreinformation, see the intent guide(https://cloud.google.com/dialogflow/docs/intents-overview).

func (GoogleCloudDialogflowV2Intent)MarshalJSON

func (sGoogleCloudDialogflowV2Intent) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2IntentFollowupIntentInfo

type GoogleCloudDialogflowV2IntentFollowupIntentInfo struct {// FollowupIntentName: The unique identifier of the followup intent. Format:// `projects//agent/intents/`.FollowupIntentNamestring `json:"followupIntentName,omitempty"`// ParentFollowupIntentName: The unique identifier of the followup intent's// parent. Format: `projects//agent/intents/`.ParentFollowupIntentNamestring `json:"parentFollowupIntentName,omitempty"`// ForceSendFields is a list of field names (e.g. "FollowupIntentName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FollowupIntentName") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentFollowupIntentInfo: Represents a singlefollowup intent in the chain.

func (GoogleCloudDialogflowV2IntentFollowupIntentInfo)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessage

type GoogleCloudDialogflowV2IntentMessage struct {// BasicCard: The basic card response for Actions on Google.BasicCard *GoogleCloudDialogflowV2IntentMessageBasicCard `json:"basicCard,omitempty"`// BrowseCarouselCard: Browse carousel card for Actions on Google.BrowseCarouselCard *GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard `json:"browseCarouselCard,omitempty"`// Card: The card response.Card *GoogleCloudDialogflowV2IntentMessageCard `json:"card,omitempty"`// CarouselSelect: The carousel card response for Actions on Google.CarouselSelect *GoogleCloudDialogflowV2IntentMessageCarouselSelect `json:"carouselSelect,omitempty"`// Image: The image response.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// LinkOutSuggestion: The link out suggestion chip for Actions on Google.LinkOutSuggestion *GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion `json:"linkOutSuggestion,omitempty"`// ListSelect: The list card response for Actions on Google.ListSelect *GoogleCloudDialogflowV2IntentMessageListSelect `json:"listSelect,omitempty"`// MediaContent: The media content card for Actions on Google.MediaContent *GoogleCloudDialogflowV2IntentMessageMediaContent `json:"mediaContent,omitempty"`// Payload: A custom platform-specific response.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// Platform: Optional. The platform that this message is intended for.//// Possible values://   "PLATFORM_UNSPECIFIED" - Default platform.//   "FACEBOOK" - Facebook.//   "SLACK" - Slack.//   "TELEGRAM" - Telegram.//   "KIK" - Kik.//   "SKYPE" - Skype.//   "LINE" - Line.//   "VIBER" - Viber.//   "ACTIONS_ON_GOOGLE" - Google Assistant See [Dialogflow webhook// format](https://developers.google.com/assistant/actions/build/json/dialogflow// -webhook-json)//   "GOOGLE_HANGOUTS" - Google Hangouts.Platformstring `json:"platform,omitempty"`// QuickReplies: The quick replies response.QuickReplies *GoogleCloudDialogflowV2IntentMessageQuickReplies `json:"quickReplies,omitempty"`// SimpleResponses: The voice and text-only responses for Actions on Google.SimpleResponses *GoogleCloudDialogflowV2IntentMessageSimpleResponses `json:"simpleResponses,omitempty"`// Suggestions: The suggestion chips for Actions on Google.Suggestions *GoogleCloudDialogflowV2IntentMessageSuggestions `json:"suggestions,omitempty"`// TableCard: Table card for Actions on Google.TableCard *GoogleCloudDialogflowV2IntentMessageTableCard `json:"tableCard,omitempty"`// Text: The text response.Text *GoogleCloudDialogflowV2IntentMessageText `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "BasicCard") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BasicCard") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessage: A rich response message. Correspondsto the intent `Response` field in the Dialogflow console. For moreinformation, see Rich response messages(https://cloud.google.com/dialogflow/docs/intents-rich-messages).

func (GoogleCloudDialogflowV2IntentMessage)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBasicCard

type GoogleCloudDialogflowV2IntentMessageBasicCard struct {// Buttons: Optional. The collection of card buttons.Buttons []*GoogleCloudDialogflowV2IntentMessageBasicCardButton `json:"buttons,omitempty"`// FormattedText: Required, unless image is present. The body text of the card.FormattedTextstring `json:"formattedText,omitempty"`// Image: Optional. The image for the card.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// Subtitle: Optional. The subtitle of the card.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBasicCard: The basic card message.Useful for displaying information.

func (GoogleCloudDialogflowV2IntentMessageBasicCard)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBasicCardButton

type GoogleCloudDialogflowV2IntentMessageBasicCardButton struct {// OpenUriAction: Required. Action to take when a user taps on the button.OpenUriAction *GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction `json:"openUriAction,omitempty"`// Title: Required. The title of the button.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "OpenUriAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OpenUriAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBasicCardButton: The button object thatappears at the bottom of a card.

func (GoogleCloudDialogflowV2IntentMessageBasicCardButton)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction

type GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction struct {// Uri: Required. The HTTP or HTTPS scheme URI.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction: Opens thegiven URI.

func (GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBrowseCarouselCard

type GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard struct {// ImageDisplayOptions: Optional. Settings for displaying the image. Applies to// every image in items.//// Possible values://   "IMAGE_DISPLAY_OPTIONS_UNSPECIFIED" - Fill the gaps between the image and// the image container with gray bars.//   "GRAY" - Fill the gaps between the image and the image container with gray// bars.//   "WHITE" - Fill the gaps between the image and the image container with// white bars.//   "CROPPED" - Image is scaled such that the image width and height match or// exceed the container dimensions. This may crop the top and bottom of the// image if the scaled image height is greater than the container height, or// crop the left and right of the image if the scaled image width is greater// than the container width. This is similar to "Zoom Mode" on a widescreen TV// when playing a 4:3 video.//   "BLURRED_BACKGROUND" - Pad the gaps between image and image frame with a// blurred copy of the same image.ImageDisplayOptionsstring `json:"imageDisplayOptions,omitempty"`// Items: Required. List of items in the Browse Carousel Card. Minimum of two// items, maximum of ten.Items []*GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem `json:"items,omitempty"`// ForceSendFields is a list of field names (e.g. "ImageDisplayOptions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ImageDisplayOptions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard: Browse Carousel Cardfor Actions on Google.https://developers.google.com/actions/assistant/responses#browsing_carousel

func (GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem

type GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem struct {// Description: Optional. Description of the carousel item. Maximum of four// lines of text.Descriptionstring `json:"description,omitempty"`// Footer: Optional. Text that appears at the bottom of the Browse Carousel// Card. Maximum of one line of text.Footerstring `json:"footer,omitempty"`// Image: Optional. Hero image for the carousel item.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// OpenUriAction: Required. Action to present to the user.OpenUriAction *GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction `json:"openUriAction,omitempty"`// Title: Required. Title of the carousel item. Maximum of two lines of text.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem:

Browsing carousel tile

func (GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction

type GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction struct {// Url: Required. URLUrlstring `json:"url,omitempty"`// UrlTypeHint: Optional. Specifies the type of viewer that is used when// opening the URL. Defaults to opening via web browser.//// Possible values://   "URL_TYPE_HINT_UNSPECIFIED" - Unspecified//   "AMP_ACTION" - Url would be an amp action//   "AMP_CONTENT" - URL that points directly to AMP content, or to a canonical// URL which refers to AMP content via .UrlTypeHintstring `json:"urlTypeHint,omitempty"`// ForceSendFields is a list of field names (e.g. "Url") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Url") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction: Actions on Google action to open a given url.

func (GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageCard

type GoogleCloudDialogflowV2IntentMessageCard struct {// Buttons: Optional. The collection of card buttons.Buttons []*GoogleCloudDialogflowV2IntentMessageCardButton `json:"buttons,omitempty"`// ImageUri: Optional. The public URI to an image file for the card.ImageUristring `json:"imageUri,omitempty"`// Subtitle: Optional. The subtitle of the card.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageCard: The card response message.

func (GoogleCloudDialogflowV2IntentMessageCard)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageCardButton

type GoogleCloudDialogflowV2IntentMessageCardButton struct {// Postback: Optional. The text to send back to the Dialogflow API or a URI to// open.Postbackstring `json:"postback,omitempty"`// Text: Optional. The text to show on the button.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Postback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Postback") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageCardButton: Contains information about abutton.

func (GoogleCloudDialogflowV2IntentMessageCardButton)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageCarouselSelect

type GoogleCloudDialogflowV2IntentMessageCarouselSelect struct {// Items: Required. Carousel items.Items []*GoogleCloudDialogflowV2IntentMessageCarouselSelectItem `json:"items,omitempty"`// ForceSendFields is a list of field names (e.g. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageCarouselSelect: The card for presentinga carousel of options to select from.

func (GoogleCloudDialogflowV2IntentMessageCarouselSelect)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageCarouselSelectItem

type GoogleCloudDialogflowV2IntentMessageCarouselSelectItem struct {// Description: Optional. The body text of the card.Descriptionstring `json:"description,omitempty"`// Image: Optional. The image to display.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// Info: Required. Additional info about the option item.Info *GoogleCloudDialogflowV2IntentMessageSelectItemInfo `json:"info,omitempty"`// Title: Required. Title of the carousel item.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageCarouselSelectItem: An item in thecarousel.

func (GoogleCloudDialogflowV2IntentMessageCarouselSelectItem)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageColumnProperties

type GoogleCloudDialogflowV2IntentMessageColumnProperties struct {// Header: Required. Column heading.Headerstring `json:"header,omitempty"`// HorizontalAlignment: Optional. Defines text alignment for all cells in this// column.//// Possible values://   "HORIZONTAL_ALIGNMENT_UNSPECIFIED" - Text is aligned to the leading edge// of the column.//   "LEADING" - Text is aligned to the leading edge of the column.//   "CENTER" - Text is centered in the column.//   "TRAILING" - Text is aligned to the trailing edge of the column.HorizontalAlignmentstring `json:"horizontalAlignment,omitempty"`// ForceSendFields is a list of field names (e.g. "Header") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Header") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageColumnProperties: Column properties forTableCard.

func (GoogleCloudDialogflowV2IntentMessageColumnProperties)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageImage

type GoogleCloudDialogflowV2IntentMessageImage struct {// AccessibilityText: Optional. A text description of the image to be used for// accessibility, e.g., screen readers.AccessibilityTextstring `json:"accessibilityText,omitempty"`// ImageUri: Optional. The public URI to an image file.ImageUristring `json:"imageUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessibilityText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AccessibilityText") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageImage: The image response message.

func (GoogleCloudDialogflowV2IntentMessageImage)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageLinkOutSuggestion

type GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion struct {// DestinationName: Required. The name of the app or site this chip is linking// to.DestinationNamestring `json:"destinationName,omitempty"`// Uri: Required. The URI of the app or site to open when the user taps the// suggestion chip.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "DestinationName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DestinationName") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion: The suggestion chipmessage that allows the user to jump out to the app or website associatedwith this agent.

func (GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageListSelect

type GoogleCloudDialogflowV2IntentMessageListSelect struct {// Items: Required. List items.Items []*GoogleCloudDialogflowV2IntentMessageListSelectItem `json:"items,omitempty"`// Subtitle: Optional. Subtitle of the list.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The overall title of the list.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageListSelect: The card for presenting alist of options to select from.

func (GoogleCloudDialogflowV2IntentMessageListSelect)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageListSelectItem

type GoogleCloudDialogflowV2IntentMessageListSelectItem struct {// Description: Optional. The main text describing the item.Descriptionstring `json:"description,omitempty"`// Image: Optional. The image to display.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// Info: Required. Additional information about this option.Info *GoogleCloudDialogflowV2IntentMessageSelectItemInfo `json:"info,omitempty"`// Title: Required. The title of the list item.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageListSelectItem: An item in the list.

func (GoogleCloudDialogflowV2IntentMessageListSelectItem)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageMediaContent

type GoogleCloudDialogflowV2IntentMessageMediaContent struct {// MediaObjects: Required. List of media objects.MediaObjects []*GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject `json:"mediaObjects,omitempty"`// MediaType: Optional. What type of media is the content (ie "audio").//// Possible values://   "RESPONSE_MEDIA_TYPE_UNSPECIFIED" - Unspecified.//   "AUDIO" - Response media type is audio.MediaTypestring `json:"mediaType,omitempty"`// ForceSendFields is a list of field names (e.g. "MediaObjects") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MediaObjects") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageMediaContent: The media content card forActions on Google.

func (GoogleCloudDialogflowV2IntentMessageMediaContent)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject

type GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject struct {// ContentUrl: Required. Url where the media is stored.ContentUrlstring `json:"contentUrl,omitempty"`// Description: Optional. Description of media card.Descriptionstring `json:"description,omitempty"`// Icon: Optional. Icon to display above media content.Icon *GoogleCloudDialogflowV2IntentMessageImage `json:"icon,omitempty"`// LargeImage: Optional. Image to display above media content.LargeImage *GoogleCloudDialogflowV2IntentMessageImage `json:"largeImage,omitempty"`// Name: Required. Name of media card.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "ContentUrl") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContentUrl") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject:Response media object for media content card.

func (GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageQuickReplies

type GoogleCloudDialogflowV2IntentMessageQuickReplies struct {// QuickReplies: Optional. The collection of quick replies.QuickReplies []string `json:"quickReplies,omitempty"`// Title: Optional. The title of the collection of quick replies.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "QuickReplies") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QuickReplies") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageQuickReplies: The quick replies responsemessage.

func (GoogleCloudDialogflowV2IntentMessageQuickReplies)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageSelectItemInfo

type GoogleCloudDialogflowV2IntentMessageSelectItemInfo struct {// Key: Required. A unique key that will be sent back to the agent if this// response is given.Keystring `json:"key,omitempty"`// Synonyms: Optional. A list of synonyms that can also be used to trigger this// item in dialog.Synonyms []string `json:"synonyms,omitempty"`// ForceSendFields is a list of field names (e.g. "Key") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Key") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageSelectItemInfo: Additional info aboutthe select item for when it is triggered in a dialog.

func (GoogleCloudDialogflowV2IntentMessageSelectItemInfo)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageSimpleResponse

type GoogleCloudDialogflowV2IntentMessageSimpleResponse struct {// DisplayText: Optional. The text to display.DisplayTextstring `json:"displayText,omitempty"`// Ssml: One of text_to_speech or ssml must be provided. Structured spoken// response to the user in the SSML format. Mutually exclusive with// text_to_speech.Ssmlstring `json:"ssml,omitempty"`// TextToSpeech: One of text_to_speech or ssml must be provided. The plain text// of the speech output. Mutually exclusive with ssml.TextToSpeechstring `json:"textToSpeech,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageSimpleResponse: The simple responsemessage containing speech or text.

func (GoogleCloudDialogflowV2IntentMessageSimpleResponse)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageSimpleResponses

type GoogleCloudDialogflowV2IntentMessageSimpleResponses struct {// SimpleResponses: Required. The list of simple responses.SimpleResponses []*GoogleCloudDialogflowV2IntentMessageSimpleResponse `json:"simpleResponses,omitempty"`// ForceSendFields is a list of field names (e.g. "SimpleResponses") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SimpleResponses") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageSimpleResponses: The collection ofsimple response candidates. This message in`QueryResult.fulfillment_messages` and`WebhookResponse.fulfillment_messages` should contain only one`SimpleResponse`.

func (GoogleCloudDialogflowV2IntentMessageSimpleResponses)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageSuggestion

type GoogleCloudDialogflowV2IntentMessageSuggestion struct {// Title: Required. The text shown the in the suggestion chip.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Title") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Title") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageSuggestion: The suggestion chip messagethat the user can tap to quickly post a reply to the conversation.

func (GoogleCloudDialogflowV2IntentMessageSuggestion)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageSuggestions

type GoogleCloudDialogflowV2IntentMessageSuggestions struct {// Suggestions: Required. The list of suggested replies.Suggestions []*GoogleCloudDialogflowV2IntentMessageSuggestion `json:"suggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "Suggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Suggestions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageSuggestions: The collection ofsuggestions.

func (GoogleCloudDialogflowV2IntentMessageSuggestions)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageTableCard

type GoogleCloudDialogflowV2IntentMessageTableCard struct {// Buttons: Optional. List of buttons for the card.Buttons []*GoogleCloudDialogflowV2IntentMessageBasicCardButton `json:"buttons,omitempty"`// ColumnProperties: Optional. Display properties for the columns in this// table.ColumnProperties []*GoogleCloudDialogflowV2IntentMessageColumnProperties `json:"columnProperties,omitempty"`// Image: Optional. Image which should be displayed on the card.Image *GoogleCloudDialogflowV2IntentMessageImage `json:"image,omitempty"`// Rows: Optional. Rows in this table of data.Rows []*GoogleCloudDialogflowV2IntentMessageTableCardRow `json:"rows,omitempty"`// Subtitle: Optional. Subtitle to the title.Subtitlestring `json:"subtitle,omitempty"`// Title: Required. Title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageTableCard: Table card for Actions onGoogle.

func (GoogleCloudDialogflowV2IntentMessageTableCard)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageTableCardCell

type GoogleCloudDialogflowV2IntentMessageTableCardCell struct {// Text: Required. Text in this cell.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageTableCardCell: Cell of TableCardRow.

func (GoogleCloudDialogflowV2IntentMessageTableCardCell)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageTableCardRow

type GoogleCloudDialogflowV2IntentMessageTableCardRow struct {// Cells: Optional. List of cells that make up this row.Cells []*GoogleCloudDialogflowV2IntentMessageTableCardCell `json:"cells,omitempty"`// DividerAfter: Optional. Whether to add a visual divider after this row.DividerAfterbool `json:"dividerAfter,omitempty"`// ForceSendFields is a list of field names (e.g. "Cells") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cells") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageTableCardRow: Row of TableCard.

func (GoogleCloudDialogflowV2IntentMessageTableCardRow)MarshalJSON

typeGoogleCloudDialogflowV2IntentMessageText

type GoogleCloudDialogflowV2IntentMessageText struct {// Text: Optional. The collection of the agent's responses.Text []string `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentMessageText: The text response message.

func (GoogleCloudDialogflowV2IntentMessageText)MarshalJSON

typeGoogleCloudDialogflowV2IntentParameter

type GoogleCloudDialogflowV2IntentParameter struct {// DefaultValue: Optional. The default value to use when the `value` yields an// empty result. Default values can be extracted from contexts by using the// following syntax: `#context_name.parameter_name`.DefaultValuestring `json:"defaultValue,omitempty"`// DisplayName: Required. The name of the parameter.DisplayNamestring `json:"displayName,omitempty"`// EntityTypeDisplayName: Optional. The name of the entity type, prefixed with// `@`, that describes values of the parameter. If the parameter is required,// this must be provided.EntityTypeDisplayNamestring `json:"entityTypeDisplayName,omitempty"`// IsList: Optional. Indicates whether the parameter represents a list of// values.IsListbool `json:"isList,omitempty"`// Mandatory: Optional. Indicates whether the parameter is required. That is,// whether the intent cannot be completed without collecting the parameter// value.Mandatorybool `json:"mandatory,omitempty"`// Name: The unique identifier of this parameter.Namestring `json:"name,omitempty"`// Prompts: Optional. The collection of prompts that the agent can present to// the user in order to collect a value for the parameter.Prompts []string `json:"prompts,omitempty"`// Value: Optional. The definition of the parameter value. It can be: - a// constant string, - a parameter value defined as `$parameter_name`, - an// original parameter value defined as `$parameter_name.original`, - a// parameter value from some context defined as `#context_name.parameter_name`.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultValue") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultValue") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentParameter: Represents intent parameters.

func (GoogleCloudDialogflowV2IntentParameter)MarshalJSON

typeGoogleCloudDialogflowV2IntentTrainingPhrase

type GoogleCloudDialogflowV2IntentTrainingPhrase struct {// Name: Output only. The unique identifier of this training phrase.Namestring `json:"name,omitempty"`// Parts: Required. The ordered list of training phrase parts. The parts are// concatenated in order to form the training phrase. Note: The API does not// automatically annotate training phrases like the Dialogflow Console does.// Note: Do not forget to include whitespace at part boundaries, so the// training phrase is well formatted when the parts are concatenated. If the// training phrase does not need to be annotated with parameters, you just need// a single part with only the Part.text field set. If you want to annotate the// training phrase, you must create multiple parts, where the fields of each// part are populated in one of two ways: - `Part.text` is set to a part of the// phrase that has no parameters. - `Part.text` is set to a part of the phrase// that you want to annotate, and the `entity_type`, `alias`, and// `user_defined` fields are all set.Parts []*GoogleCloudDialogflowV2IntentTrainingPhrasePart `json:"parts,omitempty"`// TimesAddedCount: Optional. Indicates how many times this example was added// to the intent. Each time a developer adds an existing sample by editing an// intent or training, this counter is increased.TimesAddedCountint64 `json:"timesAddedCount,omitempty"`// Type: Required. The type of the training phrase.//// Possible values://   "TYPE_UNSPECIFIED" - Not specified. This value should never be used.//   "EXAMPLE" - Examples do not contain @-prefixed entity type names, but// example parts can be annotated with entity types.//   "TEMPLATE" - Templates are not annotated with entity types, but they can// contain @-prefixed entity type names as substrings. Template mode has been// deprecated. Example mode is the only supported way to create new training// phrases. If you have existing training phrases that you've created in// template mode, those will continue to work.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentTrainingPhrase: Represents an example that theagent is trained on.

func (GoogleCloudDialogflowV2IntentTrainingPhrase)MarshalJSON

typeGoogleCloudDialogflowV2IntentTrainingPhrasePart

type GoogleCloudDialogflowV2IntentTrainingPhrasePart struct {// Alias: Optional. The parameter name for the value extracted from the// annotated part of the example. This field is required for annotated parts of// the training phrase.Aliasstring `json:"alias,omitempty"`// EntityType: Optional. The entity type name prefixed with `@`. This field is// required for annotated parts of the training phrase.EntityTypestring `json:"entityType,omitempty"`// Text: Required. The text for this part.Textstring `json:"text,omitempty"`// UserDefined: Optional. Indicates whether the text was manually annotated.// This field is set to true when the Dialogflow Console is used to manually// annotate the part. When creating an annotated part with the API, you must// set this to true.UserDefinedbool `json:"userDefined,omitempty"`// ForceSendFields is a list of field names (e.g. "Alias") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Alias") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2IntentTrainingPhrasePart: Represents a part of atraining phrase.

func (GoogleCloudDialogflowV2IntentTrainingPhrasePart)MarshalJSON

typeGoogleCloudDialogflowV2KnowledgeAssistAnsweradded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswer struct {// AnswerRecord: The name of the answer record. Format:// `projects//locations//answer Records/`.AnswerRecordstring `json:"answerRecord,omitempty"`// SuggestedQuery: The query suggested based on the context. Suggestion is made// only if it is different from the previous suggestion.SuggestedQuery *GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery `json:"suggestedQuery,omitempty"`// SuggestedQueryAnswer: The answer generated for the suggested query. Whether// or not an answer is generated depends on how confident we are about the// generated query.SuggestedQueryAnswer *GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer `json:"suggestedQueryAnswer,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswer: Represents a Knowledge Assistanswer.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswer)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnsweradded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer struct {// AnswerText: The piece of text from the `source` that answers this suggested// query.AnswerTextstring `json:"answerText,omitempty"`// FaqSource: Populated if the prediction came from FAQ.FaqSource *GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource `json:"faqSource,omitempty"`// GenerativeSource: Populated if the prediction was Generative.GenerativeSource *GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource `json:"generativeSource,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer: Represents ananswer from Knowledge. Currently supports FAQ and Generative answers.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSourceadded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource struct {// Question: The corresponding FAQ question.Questionstring `json:"question,omitempty"`// ForceSendFields is a list of field names (e.g. "Question") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Question") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource:Details about source of FAQ answer.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerFaqSource)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceadded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource struct {// Snippets: All snippets used for this Generative Prediction, with their// source URI and data.Snippets []*GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet `json:"snippets,omitempty"`// ForceSendFields is a list of field names (e.g. "Snippets") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Snippets") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource:Details about source of Generative answer.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippetadded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet struct {// Metadata: Metadata of the document.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Text: Text taken from that URI.Textstring `json:"text,omitempty"`// Title: Title of the document.Titlestring `json:"title,omitempty"`// Uri: URI the data is sourced from.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet: Snippet Source for a Generative Prediction.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQueryadded inv0.185.0

type GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery struct {// QueryText: Suggested query text.QueryTextstring `json:"queryText,omitempty"`// ForceSendFields is a list of field names (e.g. "QueryText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QueryText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery: Represents asuggested query.

func (GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2KnowledgeOperationMetadataadded inv0.42.0

type GoogleCloudDialogflowV2KnowledgeOperationMetadata struct {// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// ExportOperationMetadata: Metadata for the Export Data Operation such as the// destination of export.ExportOperationMetadata *GoogleCloudDialogflowV2ExportOperationMetadata `json:"exportOperationMetadata,omitempty"`// KnowledgeBase: The name of the knowledge base interacted with during the// operation.KnowledgeBasestring `json:"knowledgeBase,omitempty"`// State: Output only. The current state of this operation.//// Possible values://   "STATE_UNSPECIFIED" - State unspecified.//   "PENDING" - The operation has been created.//   "RUNNING" - The operation is currently running.//   "DONE" - The operation is done, either cancelled or completed.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "DoneTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DoneTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2KnowledgeOperationMetadata: Metadata ingoogle::longrunning::Operation for Knowledge operations.

func (GoogleCloudDialogflowV2KnowledgeOperationMetadata)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2Message

type GoogleCloudDialogflowV2Message struct {// Content: Required. The message content.Contentstring `json:"content,omitempty"`// CreateTime: Output only. The time when the message was created in Contact// Center AI.CreateTimestring `json:"createTime,omitempty"`// LanguageCode: Optional. The message language. This should be a BCP-47// (https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example:// "en-US".LanguageCodestring `json:"languageCode,omitempty"`// MessageAnnotation: Output only. The annotation for the message.MessageAnnotation *GoogleCloudDialogflowV2MessageAnnotation `json:"messageAnnotation,omitempty"`// Name: Optional. The unique identifier of the message. Format:// `projects//locations//conversations//messages/`.Namestring `json:"name,omitempty"`// Participant: Output only. The participant that sends this message.Participantstring `json:"participant,omitempty"`// ParticipantRole: Output only. The role of the participant.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// SendTime: Optional. The time when the message was sent. For voice messages,// this is the time when an utterance started.SendTimestring `json:"sendTime,omitempty"`// SentimentAnalysis: Output only. The sentiment analysis result for the// message.SentimentAnalysis *GoogleCloudDialogflowV2SentimentAnalysisResult `json:"sentimentAnalysis,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2Message: Represents a message posted into aconversation.

func (GoogleCloudDialogflowV2Message)MarshalJSON

func (sGoogleCloudDialogflowV2Message) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2MessageAnnotation

type GoogleCloudDialogflowV2MessageAnnotation struct {// ContainEntities: Indicates whether the text message contains entities.ContainEntitiesbool `json:"containEntities,omitempty"`// Parts: The collection of annotated message parts ordered by their position// in the message. You can recover the annotated message by concatenating// [AnnotatedMessagePart.text].Parts []*GoogleCloudDialogflowV2AnnotatedMessagePart `json:"parts,omitempty"`// ForceSendFields is a list of field names (e.g. "ContainEntities") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContainEntities") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2MessageAnnotation: Represents the result ofannotation for the message.

func (GoogleCloudDialogflowV2MessageAnnotation)MarshalJSON

typeGoogleCloudDialogflowV2OriginalDetectIntentRequest

type GoogleCloudDialogflowV2OriginalDetectIntentRequest struct {// Payload: Optional. This field is set to the value of the// `QueryParameters.payload` field passed in the request. Some integrations// that query a Dialogflow agent may provide additional information in the// payload. In particular, for the Dialogflow Phone Gateway integration, this// field has the form: { "telephony": { "caller_id": "+18558363987" } } Note:// The caller ID field (`caller_id`) will be redacted for Trial Edition agents// and populated with the caller ID in E.164 format// (https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// Source: The source of this request, e.g., `google`, `facebook`, `slack`. It// is set by Dialogflow-owned servers.Sourcestring `json:"source,omitempty"`// Version: Optional. The version of the protocol used for this request. This// field is AoG-specific.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Payload") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Payload") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2OriginalDetectIntentRequest: Represents the contentsof the original request that was passed to the `[Streaming]DetectIntent`call.

func (GoogleCloudDialogflowV2OriginalDetectIntentRequest)MarshalJSON

typeGoogleCloudDialogflowV2QueryResult

type GoogleCloudDialogflowV2QueryResult struct {// Action: The action name from the matched intent.Actionstring `json:"action,omitempty"`// AllRequiredParamsPresent: This field is set to: - `false` if the matched// intent has required parameters and not all of the required parameter values// have been collected. - `true` if all required parameter values have been// collected, or if the matched intent doesn't contain any required parameters.AllRequiredParamsPresentbool `json:"allRequiredParamsPresent,omitempty"`// CancelsSlotFilling: Indicates whether the conversational query triggers a// cancellation for slot filling. For more information, see the cancel slot// filling documentation// (https://cloud.google.com/dialogflow/es/docs/intents-actions-parameters#cancel).CancelsSlotFillingbool `json:"cancelsSlotFilling,omitempty"`// DiagnosticInfo: Free-form diagnostic information for the associated detect// intent request. The fields of this data can change without notice, so you// should not write code that depends on its structure. The data may contain: -// webhook call latency - webhook errorsDiagnosticInfogoogleapi.RawMessage `json:"diagnosticInfo,omitempty"`// FulfillmentMessages: The collection of rich messages to present to the user.FulfillmentMessages []*GoogleCloudDialogflowV2IntentMessage `json:"fulfillmentMessages,omitempty"`// FulfillmentText: The text to be pronounced to the user or shown on the// screen. Note: This is a legacy field, `fulfillment_messages` should be// preferred.FulfillmentTextstring `json:"fulfillmentText,omitempty"`// Intent: The intent that matched the conversational query. Some, not all// fields are filled in this message, including but not limited to: `name`,// `display_name`, `end_interaction` and `is_fallback`.Intent *GoogleCloudDialogflowV2Intent `json:"intent,omitempty"`// IntentDetectionConfidence: The intent detection confidence. Values range// from 0.0 (completely uncertain) to 1.0 (completely certain). This value is// for informational purpose only and is only used to help match the best// intent within the classification threshold. This value may change for the// same end-user expression at any time due to a model retraining or change in// implementation. If there are `multiple knowledge_answers` messages, this// value is set to the greatest `knowledgeAnswers.match_confidence` value in// the list.IntentDetectionConfidencefloat64 `json:"intentDetectionConfidence,omitempty"`// LanguageCode: The language that was triggered during intent detection. See// Language Support// (https://cloud.google.com/dialogflow/docs/reference/language) for a list of// the currently supported language codes.LanguageCodestring `json:"languageCode,omitempty"`// OutputContexts: The collection of output contexts. If applicable,// `output_contexts.parameters` contains entries with name `.original`// containing the original parameter values before the query.OutputContexts []*GoogleCloudDialogflowV2Context `json:"outputContexts,omitempty"`// Parameters: The collection of extracted parameters. Depending on your// protocol or client library language, this is a map, associative array,// symbol table, dictionary, or JSON object composed of a collection of// (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter// name * MapValue type: If parameter's entity type is a composite entity then// use map, otherwise, depending on the parameter value type, it could be one// of string, number, boolean, null, list or map. * MapValue value: If// parameter's entity type is a composite entity then use map from composite// entity property names to property values, otherwise, use parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// QueryText: The original conversational query text: - If natural language// text was provided as input, `query_text` contains a copy of the input. - If// natural language speech audio was provided as input, `query_text` contains// the speech recognition result. If speech recognizer produced multiple// alternatives, a particular one is picked. - If automatic spell correction is// enabled, `query_text` will contain the corrected user input.QueryTextstring `json:"queryText,omitempty"`// SentimentAnalysisResult: The sentiment analysis result, which depends on the// `sentiment_analysis_request_config` specified in the request.SentimentAnalysisResult *GoogleCloudDialogflowV2SentimentAnalysisResult `json:"sentimentAnalysisResult,omitempty"`// SpeechRecognitionConfidence: The Speech recognition confidence between 0.0// and 1.0. A higher number indicates an estimated greater likelihood that the// recognized words are correct. The default of 0.0 is a sentinel value// indicating that confidence was not set. This field is not guaranteed to be// accurate or set. In particular this field isn't set for// StreamingDetectIntent since the streaming endpoint has separate confidence// estimates per portion of the audio in StreamingRecognitionResult.SpeechRecognitionConfidencefloat64 `json:"speechRecognitionConfidence,omitempty"`// WebhookPayload: If the query was fulfilled by a webhook call, this field is// set to the value of the `payload` field returned in the webhook response.WebhookPayloadgoogleapi.RawMessage `json:"webhookPayload,omitempty"`// WebhookSource: If the query was fulfilled by a webhook call, this field is// set to the value of the `source` field returned in the webhook response.WebhookSourcestring `json:"webhookSource,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2QueryResult: Represents the result of conversationalquery or event processing.

func (GoogleCloudDialogflowV2QueryResult)MarshalJSON

func (*GoogleCloudDialogflowV2QueryResult)UnmarshalJSON

func (s *GoogleCloudDialogflowV2QueryResult) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2Sentiment

type GoogleCloudDialogflowV2Sentiment struct {// Magnitude: A non-negative number in the [0, +inf) range, which represents// the absolute magnitude of sentiment, regardless of score (positive or// negative).Magnitudefloat64 `json:"magnitude,omitempty"`// Score: Sentiment score between -1.0 (negative sentiment) and 1.0 (positive// sentiment).Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Magnitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Magnitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2Sentiment: The sentiment, such as positive/negativefeeling or association, for a unit of analysis, such as the query text. See:https://cloud.google.com/natural-language/docs/basics#interpreting_sentiment_analysis_valuesfor how to interpret the result.

func (GoogleCloudDialogflowV2Sentiment)MarshalJSON

func (sGoogleCloudDialogflowV2Sentiment) MarshalJSON() ([]byte,error)

func (*GoogleCloudDialogflowV2Sentiment)UnmarshalJSON

func (s *GoogleCloudDialogflowV2Sentiment) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2SentimentAnalysisResult

type GoogleCloudDialogflowV2SentimentAnalysisResult struct {// QueryTextSentiment: The sentiment analysis result for `query_text`.QueryTextSentiment *GoogleCloudDialogflowV2Sentiment `json:"queryTextSentiment,omitempty"`// ForceSendFields is a list of field names (e.g. "QueryTextSentiment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QueryTextSentiment") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SentimentAnalysisResult: The result of sentimentanalysis. Sentiment analysis inspects user input and identifies theprevailing subjective opinion, especially to determine a user's attitude aspositive, negative, or neutral. For DetectIntent, it needs to be configuredin DetectIntentRequest.query_params. For StreamingDetectIntent, it needs tobe configured in StreamingDetectIntentRequest.query_params. And forParticipants.AnalyzeContent and Participants.StreamingAnalyzeContent, itneeds to be configured in ConversationProfile.human_agent_assistant_config

func (GoogleCloudDialogflowV2SentimentAnalysisResult)MarshalJSON

typeGoogleCloudDialogflowV2SessionEntityType

type GoogleCloudDialogflowV2SessionEntityType struct {// Entities: Required. The collection of entities associated with this session// entity type.Entities []*GoogleCloudDialogflowV2EntityTypeEntity `json:"entities,omitempty"`// EntityOverrideMode: Required. Indicates whether the additional data should// override or supplement the custom entity type definition.//// Possible values://   "ENTITY_OVERRIDE_MODE_UNSPECIFIED" - Not specified. This value should be// never used.//   "ENTITY_OVERRIDE_MODE_OVERRIDE" - The collection of session entities// overrides the collection of entities in the corresponding custom entity// type.//   "ENTITY_OVERRIDE_MODE_SUPPLEMENT" - The collection of session entities// extends the collection of entities in the corresponding custom entity type.// Note: Even in this override mode calls to `ListSessionEntityTypes`,// `GetSessionEntityType`, `CreateSessionEntityType` and// `UpdateSessionEntityType` only return the additional entities added in this// session entity type. If you want to get the supplemented list, please call// EntityTypes.GetEntityType on the custom entity type and merge.EntityOverrideModestring `json:"entityOverrideMode,omitempty"`// Name: Required. The unique identifier of this session entity type. Format:// `projects//agent/sessions//entityTypes/`, or// `projects//agent/environments//users//sessions//entityTypes/`. If// `Environment ID` is not specified, we assume default 'draft' environment. If// `User ID` is not specified, we assume default '-' user. “ must be the// display name of an existing entity type in the same agent that will be// overridden or supplemented.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Entities") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Entities") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SessionEntityType: A session represents aconversation between a Dialogflow agent and an end-user. You can createspecial entities, called session entities, during a session. Sessionentities can extend or replace custom entity types and only exist during thesession that they were created for. All session data, including sessionentities, is stored by Dialogflow for 20 minutes. For more information, seethe session entity guide(https://cloud.google.com/dialogflow/docs/entities-session).

func (GoogleCloudDialogflowV2SessionEntityType)MarshalJSON

typeGoogleCloudDialogflowV2SetSuggestionFeatureConfigOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2SetSuggestionFeatureConfigOperationMetadata struct {// ConversationProfile: The resource name of the conversation profile. Format:// `projects//locations//conversationProfiles/`ConversationProfilestring `json:"conversationProfile,omitempty"`// CreateTime: Timestamp whe the request was created. The time is measured on// server side.CreateTimestring `json:"createTime,omitempty"`// ParticipantRole: Required. The participant role to add or update the// suggestion feature config. Only HUMAN_AGENT or END_USER can be used.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// SuggestionFeatureType: Required. The type of the suggestion feature to add// or update.//// Possible values://   "TYPE_UNSPECIFIED" - Unspecified feature type.//   "ARTICLE_SUGGESTION" - Run article suggestion model for chat.//   "FAQ" - Run FAQ model for chat.//   "SMART_REPLY" - Run smart reply model for chat.//   "CONVERSATION_SUMMARIZATION" - Run conversation summarization model for// chat.//   "KNOWLEDGE_SEARCH" - Run knowledge search with text input from agent or// text generated query.//   "KNOWLEDGE_ASSIST" - Run knowledge assist with automatic query generation.SuggestionFeatureTypestring `json:"suggestionFeatureType,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationProfile") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationProfile") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SetSuggestionFeatureConfigOperationMetadata: Metadatafor a ConversationProfiles.SetSuggestionFeatureConfig operation.

func (GoogleCloudDialogflowV2SetSuggestionFeatureConfigOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2SmartReplyAnsweradded inv0.65.0

type GoogleCloudDialogflowV2SmartReplyAnswer struct {// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Confidence: Smart reply confidence. The system's confidence score that this// reply is a good match for this conversation, as a value from 0.0 (completely// uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// Reply: The content of the reply.Replystring `json:"reply,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SmartReplyAnswer: Represents a smart reply answer.

func (GoogleCloudDialogflowV2SmartReplyAnswer)MarshalJSONadded inv0.65.0

func (*GoogleCloudDialogflowV2SmartReplyAnswer)UnmarshalJSONadded inv0.65.0

func (s *GoogleCloudDialogflowV2SmartReplyAnswer) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2SmartReplyModelMetadataadded inv0.71.0

type GoogleCloudDialogflowV2SmartReplyModelMetadata struct {// TrainingModelType: Optional. Type of the smart reply model. If not provided,// model_type is used.//// Possible values://   "MODEL_TYPE_UNSPECIFIED" - ModelType unspecified.//   "SMART_REPLY_DUAL_ENCODER_MODEL" - ModelType smart reply dual encoder// model.//   "SMART_REPLY_BERT_MODEL" - ModelType smart reply bert model.TrainingModelTypestring `json:"trainingModelType,omitempty"`// ForceSendFields is a list of field names (e.g. "TrainingModelType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TrainingModelType") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SmartReplyModelMetadata: Metadata for smart replymodels.

func (GoogleCloudDialogflowV2SmartReplyModelMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2SpeechWordInfoadded inv0.215.0

type GoogleCloudDialogflowV2SpeechWordInfo struct {// Confidence: The Speech confidence between 0.0 and 1.0 for this word. A// higher number indicates an estimated greater likelihood that the recognized// word is correct. The default of 0.0 is a sentinel value indicating that// confidence was not set. This field is not guaranteed to be fully stable over// time for the same audio input. Users should also not rely on it to always be// provided.Confidencefloat64 `json:"confidence,omitempty"`// EndOffset: Time offset relative to the beginning of the audio that// corresponds to the end of the spoken word. This is an experimental feature// and the accuracy of the time offset can vary.EndOffsetstring `json:"endOffset,omitempty"`// StartOffset: Time offset relative to the beginning of the audio that// corresponds to the start of the spoken word. This is an experimental feature// and the accuracy of the time offset can vary.StartOffsetstring `json:"startOffset,omitempty"`// Word: The word this info is for.Wordstring `json:"word,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SpeechWordInfo: Information for a word recognized bythe speech recognizer.

func (GoogleCloudDialogflowV2SpeechWordInfo)MarshalJSONadded inv0.215.0

func (*GoogleCloudDialogflowV2SpeechWordInfo)UnmarshalJSONadded inv0.215.0

func (s *GoogleCloudDialogflowV2SpeechWordInfo) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2StreamingRecognitionResultadded inv0.215.0

type GoogleCloudDialogflowV2StreamingRecognitionResult struct {// Confidence: The Speech confidence between 0.0 and 1.0 for the current// portion of audio. A higher number indicates an estimated greater likelihood// that the recognized words are correct. The default of 0.0 is a sentinel// value indicating that confidence was not set. This field is typically only// provided if `is_final` is true and you should not rely on it being accurate// or even set.Confidencefloat64 `json:"confidence,omitempty"`// IsFinal: If `false`, the `StreamingRecognitionResult` represents an interim// result that may change. If `true`, the recognizer will not return any// further hypotheses about this piece of the audio. May only be populated for// `message_type` = `TRANSCRIPT`.IsFinalbool `json:"isFinal,omitempty"`// LanguageCode: Detected language code for the transcript.LanguageCodestring `json:"languageCode,omitempty"`// MessageType: Type of the result message.//// Possible values://   "MESSAGE_TYPE_UNSPECIFIED" - Not specified. Should never be used.//   "TRANSCRIPT" - Message contains a (possibly partial) transcript.//   "END_OF_SINGLE_UTTERANCE" - This event indicates that the server has// detected the end of the user's speech utterance and expects no additional// inputs. Therefore, the server will not process additional audio (although it// may subsequently return additional results). The client should stop sending// additional audio data, half-close the gRPC connection, and wait for any// additional results until the server closes the gRPC connection. This message// is only sent if `single_utterance` was set to `true`, and is not used// otherwise.MessageTypestring `json:"messageType,omitempty"`// SpeechEndOffset: Time offset of the end of this Speech recognition result// relative to the beginning of the audio. Only populated for `message_type` =// `TRANSCRIPT`.SpeechEndOffsetstring `json:"speechEndOffset,omitempty"`// SpeechWordInfo: Word-specific information for the words recognized by Speech// in transcript. Populated if and only if `message_type` = `TRANSCRIPT` and// [InputAudioConfig.enable_word_info] is set.SpeechWordInfo []*GoogleCloudDialogflowV2SpeechWordInfo `json:"speechWordInfo,omitempty"`// Transcript: Transcript text representing the words that the user spoke.// Populated if and only if `message_type` = `TRANSCRIPT`.Transcriptstring `json:"transcript,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2StreamingRecognitionResult: Contains a speechrecognition result corresponding to a portion of the audio that is currentlybeing processed or an indication that this is the end of the singlerequested utterance. While end-user audio is being processed, Dialogflowsends a series of results. Each result may contain a `transcript` value. Atranscript represents a portion of the utterance. While the recognizer isprocessing audio, transcript values may be interim values or finalizedvalues. Once a transcript is finalized, the `is_final` value is set to trueand processing continues for the next transcript. If`StreamingDetectIntentRequest.query_input.audio_config.single_utterance` wastrue, and the recognizer has completed processing audio, the `message_type`value is set to `END_OF_SINGLE_UTTERANCE and the following (last) resultcontains the last finalized transcript. The complete end-user utterance isdetermined by concatenating the finalized transcript values received for theseries of results. In the following example, single utterance is enabled. Inthe case where single utterance is not enabled, result 7 would not occur.``` Num | transcript | message_type | is_final --- | -----------------------| ----------------------- | -------- 1 | "tube" | TRANSCRIPT | false 2 | "tobe a" | TRANSCRIPT | false 3 | "to be" | TRANSCRIPT | false 4 | "to be ornot to be" | TRANSCRIPT | true 5 | "that's" | TRANSCRIPT | false 6 | "thatis | TRANSCRIPT | false 7 | unset | END_OF_SINGLE_UTTERANCE | unset 8 | "that is the question" | TRANSCRIPT | true ``` Concatenating the finalizedtranscripts with `is_final` set to true, the complete utterance becomes "tobe or not to be that is the question".

func (GoogleCloudDialogflowV2StreamingRecognitionResult)MarshalJSONadded inv0.215.0

func (*GoogleCloudDialogflowV2StreamingRecognitionResult)UnmarshalJSONadded inv0.215.0

typeGoogleCloudDialogflowV2SuggestArticlesResponseadded inv0.42.0

type GoogleCloudDialogflowV2SuggestArticlesResponse struct {// ArticleAnswers: Articles ordered by score in descending order.ArticleAnswers []*GoogleCloudDialogflowV2ArticleAnswer `json:"articleAnswers,omitempty"`// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestArticlesRequest.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ArticleAnswers") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ArticleAnswers") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SuggestArticlesResponse: The response message forParticipants.SuggestArticles.

func (GoogleCloudDialogflowV2SuggestArticlesResponse)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2SuggestFaqAnswersResponseadded inv0.42.0

type GoogleCloudDialogflowV2SuggestFaqAnswersResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestFaqAnswersRequest.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// FaqAnswers: Answers extracted from FAQ documents.FaqAnswers []*GoogleCloudDialogflowV2FaqAnswer `json:"faqAnswers,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SuggestFaqAnswersResponse: The request message forParticipants.SuggestFaqAnswers.

func (GoogleCloudDialogflowV2SuggestFaqAnswersResponse)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2SuggestKnowledgeAssistResponseadded inv0.185.0

type GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestKnowledgeAssistRequest.context_size field in the request if there are// fewer messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// KnowledgeAssistAnswer: Output only. Knowledge Assist suggestion.KnowledgeAssistAnswer *GoogleCloudDialogflowV2KnowledgeAssistAnswer `json:"knowledgeAssistAnswer,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse: The response messagefor Participants.SuggestKnowledgeAssist.

func (GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2SuggestSmartRepliesResponseadded inv0.65.0

type GoogleCloudDialogflowV2SuggestSmartRepliesResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestSmartRepliesRequest.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// SmartReplyAnswers: Output only. Multiple reply options provided by smart// reply service. The order is based on the rank of the model prediction. The// maximum number of the returned replies is set in SmartReplyConfig.SmartReplyAnswers []*GoogleCloudDialogflowV2SmartReplyAnswer `json:"smartReplyAnswers,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SuggestSmartRepliesResponse: The response message forParticipants.SuggestSmartReplies.

func (GoogleCloudDialogflowV2SuggestSmartRepliesResponse)MarshalJSONadded inv0.65.0

typeGoogleCloudDialogflowV2SuggestionResultadded inv0.42.0

type GoogleCloudDialogflowV2SuggestionResult struct {// Error: Error status if the request failed.Error *GoogleRpcStatus `json:"error,omitempty"`// GenerateSuggestionsResponse: Suggestions generated using generators// triggered by customer or agent messages.GenerateSuggestionsResponse *GoogleCloudDialogflowV2GenerateSuggestionsResponse `json:"generateSuggestionsResponse,omitempty"`// SuggestArticlesResponse: SuggestArticlesResponse if request is for// ARTICLE_SUGGESTION.SuggestArticlesResponse *GoogleCloudDialogflowV2SuggestArticlesResponse `json:"suggestArticlesResponse,omitempty"`// SuggestFaqAnswersResponse: SuggestFaqAnswersResponse if request is for// FAQ_ANSWER.SuggestFaqAnswersResponse *GoogleCloudDialogflowV2SuggestFaqAnswersResponse `json:"suggestFaqAnswersResponse,omitempty"`// SuggestKnowledgeAssistResponse: SuggestKnowledgeAssistResponse if request is// for KNOWLEDGE_ASSIST.SuggestKnowledgeAssistResponse *GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse `json:"suggestKnowledgeAssistResponse,omitempty"`// SuggestSmartRepliesResponse: SuggestSmartRepliesResponse if request is for// SMART_REPLY.SuggestSmartRepliesResponse *GoogleCloudDialogflowV2SuggestSmartRepliesResponse `json:"suggestSmartRepliesResponse,omitempty"`// ForceSendFields is a list of field names (e.g. "Error") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Error") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SuggestionResult: One response of different type ofsuggestion response which is used in the response ofParticipants.AnalyzeContent and Participants.AnalyzeContent, as well asHumanAgentAssistantEvent.

func (GoogleCloudDialogflowV2SuggestionResult)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2SummarySuggestionadded inv0.226.0

type GoogleCloudDialogflowV2SummarySuggestion struct {// SummarySections: Required. All the parts of generated summary.SummarySections []*GoogleCloudDialogflowV2SummarySuggestionSummarySection `json:"summarySections,omitempty"`// ForceSendFields is a list of field names (e.g. "SummarySections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SummarySections") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SummarySuggestion: Suggested summary of theconversation.

func (GoogleCloudDialogflowV2SummarySuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2SummarySuggestionSummarySectionadded inv0.226.0

type GoogleCloudDialogflowV2SummarySuggestionSummarySection struct {// Section: Required. Name of the section.Sectionstring `json:"section,omitempty"`// Summary: Required. Summary text for the section.Summarystring `json:"summary,omitempty"`// ForceSendFields is a list of field names (e.g. "Section") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Section") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2SummarySuggestionSummarySection: A component of thegenerated summary.

func (GoogleCloudDialogflowV2SummarySuggestionSummarySection)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2ToolCalladded inv0.229.0

type GoogleCloudDialogflowV2ToolCall struct {// Action: Optional. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// AnswerRecord: Optional. The answer record associated with this tool call.AnswerRecordstring `json:"answerRecord,omitempty"`// CreateTime: Output only. Create time of the tool call.CreateTimestring `json:"createTime,omitempty"`// InputParameters: Optional. The action's input parameters.InputParametersgoogleapi.RawMessage `json:"inputParameters,omitempty"`// State: Output only. State of the tool call.//// Possible values://   "STATE_UNSPECIFIED" - Default value.//   "TRIGGERED" - The tool call has been triggered.//   "NEEDS_CONFIRMATION" - The tool call requires confirmation from a human.Statestring `json:"state,omitempty"`// Tool: Optional. The tool associated with this call. Format:// `projects//locations//tools/`.Toolstring `json:"tool,omitempty"`// ToolDisplayDetails: Optional. A human readable description of the tool.ToolDisplayDetailsstring `json:"toolDisplayDetails,omitempty"`// ToolDisplayName: Optional. A human readable short name of the tool, to be// shown on the UI.ToolDisplayNamestring `json:"toolDisplayName,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ToolCall: Represents a call of a specific tool'saction with the specified inputs.

func (GoogleCloudDialogflowV2ToolCall)MarshalJSONadded inv0.229.0

func (sGoogleCloudDialogflowV2ToolCall) MarshalJSON() ([]byte,error)

typeGoogleCloudDialogflowV2ToolCallResultadded inv0.229.0

type GoogleCloudDialogflowV2ToolCallResult struct {// Action: Optional. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// AnswerRecord: Optional. The answer record associated with this tool call// result.AnswerRecordstring `json:"answerRecord,omitempty"`// Content: Only populated if the response content is utf-8 encoded.Contentstring `json:"content,omitempty"`// CreateTime: Output only. Create time of the tool call result.CreateTimestring `json:"createTime,omitempty"`// Error: The tool call's error.Error *GoogleCloudDialogflowV2ToolCallResultError `json:"error,omitempty"`// RawContent: Only populated if the response content is not utf-8 encoded. (by// definition byte fields are base64 encoded).RawContentstring `json:"rawContent,omitempty"`// Tool: Optional. The tool associated with this call. Format:// `projects//locations//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ToolCallResult: The result of calling a tool'saction.

func (GoogleCloudDialogflowV2ToolCallResult)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2ToolCallResultErroradded inv0.229.0

type GoogleCloudDialogflowV2ToolCallResultError struct {// Message: Optional. The error message of the function.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Message") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Message") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2ToolCallResultError: An error produced by the toolcall.

func (GoogleCloudDialogflowV2ToolCallResultError)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2UndeployConversationModelOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata struct {// ConversationModel: The resource name of the conversation model. Format:// `projects//conversationModels/`ConversationModelstring `json:"conversationModel,omitempty"`// CreateTime: Timestamp when the request to undeploy conversation model was// submitted. The time is measured on server side.CreateTimestring `json:"createTime,omitempty"`// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationModel") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationModel") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata: Metadatafor a ConversationModels.UndeployConversationModel operation.

func (GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2WebhookRequest

type GoogleCloudDialogflowV2WebhookRequest struct {// OriginalDetectIntentRequest: Optional. The contents of the original request// that was passed to `[Streaming]DetectIntent` call.OriginalDetectIntentRequest *GoogleCloudDialogflowV2OriginalDetectIntentRequest `json:"originalDetectIntentRequest,omitempty"`// QueryResult: The result of the conversational query or event processing.// Contains the same value as `[Streaming]DetectIntentResponse.query_result`.QueryResult *GoogleCloudDialogflowV2QueryResult `json:"queryResult,omitempty"`// ResponseId: The unique identifier of the response. Contains the same value// as `[Streaming]DetectIntentResponse.response_id`.ResponseIdstring `json:"responseId,omitempty"`// Session: The unique identifier of detectIntent request session. Can be used// to identify end-user inside webhook implementation. Format:// `projects//agent/sessions/`, or// `projects//agent/environments//users//sessions/`.Sessionstring `json:"session,omitempty"`// ForceSendFields is a list of field names (e.g.// "OriginalDetectIntentRequest") to unconditionally include in API requests.// By default, fields with empty or default values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields// for more details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OriginalDetectIntentRequest") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2WebhookRequest: The request message for a webhookcall.

func (GoogleCloudDialogflowV2WebhookRequest)MarshalJSON

typeGoogleCloudDialogflowV2WebhookResponse

type GoogleCloudDialogflowV2WebhookResponse struct {// FollowupEventInput: Optional. Invokes the supplied events. When this field// is set, Dialogflow ignores the `fulfillment_text`, `fulfillment_messages`,// and `payload` fields.FollowupEventInput *GoogleCloudDialogflowV2EventInput `json:"followupEventInput,omitempty"`// FulfillmentMessages: Optional. The rich response messages intended for the// end-user. When provided, Dialogflow uses this field to populate// QueryResult.fulfillment_messages sent to the integration or API caller.FulfillmentMessages []*GoogleCloudDialogflowV2IntentMessage `json:"fulfillmentMessages,omitempty"`// FulfillmentText: Optional. The text response message intended for the// end-user. It is recommended to use `fulfillment_messages.text.text[0]`// instead. When provided, Dialogflow uses this field to populate// QueryResult.fulfillment_text sent to the integration or API caller.FulfillmentTextstring `json:"fulfillmentText,omitempty"`// OutputContexts: Optional. The collection of output contexts that will// overwrite currently active contexts for the session and reset their// lifespans. When provided, Dialogflow uses this field to populate// QueryResult.output_contexts sent to the integration or API caller.OutputContexts []*GoogleCloudDialogflowV2Context `json:"outputContexts,omitempty"`// Payload: Optional. This field can be used to pass custom data from your// webhook to the integration or API caller. Arbitrary JSON objects are// supported. When provided, Dialogflow uses this field to populate// QueryResult.webhook_payload sent to the integration or API caller. This// field is also used by the Google Assistant integration// (https://cloud.google.com/dialogflow/docs/integrations/aog) for rich// response messages. See the format definition at Google Assistant Dialogflow// webhook format// (https://developers.google.com/assistant/actions/build/json/dialogflow-webhook-json)Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SessionEntityTypes: Optional. Additional session entity types to replace or// extend developer entity types with. The entity synonyms apply to all// languages and persist for the session. Setting this data from a webhook// overwrites the session entity types that have been set using `detectIntent`,// `streamingDetectIntent` or SessionEntityType management methods.SessionEntityTypes []*GoogleCloudDialogflowV2SessionEntityType `json:"sessionEntityTypes,omitempty"`// Source: Optional. A custom field used to identify the webhook source.// Arbitrary strings are supported. When provided, Dialogflow uses this field// to populate QueryResult.webhook_source sent to the integration or API// caller.Sourcestring `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "FollowupEventInput") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FollowupEventInput") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2WebhookResponse: The response message for a webhookcall. This response is validated by the Dialogflow server. If validationfails, an error will be returned in the QueryResult.diagnostic_info field.Setting JSON fields to an empty value with the wrong type is a common error.To avoid this error: - Use "" for empty strings - Use `{}` or `null` forempty objects - Use `[]` or `null` for empty arrays For more information,see the Protocol Buffers Language Guide(https://developers.google.com/protocol-buffers/docs/proto3#json).

func (GoogleCloudDialogflowV2WebhookResponse)MarshalJSON

typeGoogleCloudDialogflowV2beta1AgentCoachingInstructionadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingInstruction struct {// AgentAction: Optional. The action that human agent should take. For example,// "apologize for the slow shipping". If the users only want to use agent// coaching for intent detection, agent_action can be emptyAgentActionstring `json:"agentAction,omitempty"`// Condition: Optional. The condition of the instruction. For example, "the// customer wants to cancel an order". If the users want the instruction to be// triggered unconditionally, the condition can be empty.Conditionstring `json:"condition,omitempty"`// DisplayDetails: Optional. The detailed description of this instruction.DisplayDetailsstring `json:"displayDetails,omitempty"`// DisplayName: Optional. Display name for the instruction.DisplayNamestring `json:"displayName,omitempty"`// DuplicateCheckResult: Output only. Duplication check for the// AgentCoachingInstruction.DuplicateCheckResult *GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// SystemAction: Optional. The action that system should take. For example,// "call GetOrderTime with order_number={order number provided by the// customer}". If the users don't have plugins or don't want to trigger// plugins, the system_action can be emptySystemActionstring `json:"systemAction,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingInstruction: Agent Coachinginstructions that customer can configure.

func (GoogleCloudDialogflowV2beta1AgentCoachingInstruction)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult struct {// DuplicateSuggestions: Output only. The duplicate suggestions.DuplicateSuggestions []*GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion `json:"duplicateSuggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateSuggestions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult:Duplication check for the suggestion.

func (GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion struct {// AnswerRecord: Output only. The answer record id of the past duplicate// suggestion.AnswerRecordstring `json:"answerRecord,omitempty"`// SimilarityScore: Output only. The similarity score of between the past and// current suggestion.SimilarityScorefloat64 `json:"similarityScore,omitempty"`// SuggestionIndex: Output only. The index of the duplicate suggestion in the// past suggestion list.SuggestionIndexint64 `json:"suggestionIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion: The duplicate suggestion details.

func (GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion)MarshalJSONadded inv0.252.0

func (*GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion)UnmarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestion struct {// AgentActionSuggestions: Optional. Suggested actions for the agent to take.AgentActionSuggestions []*GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion `json:"agentActionSuggestions,omitempty"`// ApplicableInstructions: Optional. Instructions applicable based on the// current context.ApplicableInstructions []*GoogleCloudDialogflowV2beta1AgentCoachingInstruction `json:"applicableInstructions,omitempty"`// SampleResponses: Optional. Sample response for the Agent.SampleResponses []*GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse `json:"sampleResponses,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentActionSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentActionSuggestions") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestion: Suggestion for coachingagents.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestion)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion struct {// AgentAction: Optional. The suggested action for the agent.AgentActionstring `json:"agentAction,omitempty"`// DuplicateCheckResult: Output only. Duplicate check result for the agent// action suggestion.DuplicateCheckResult *GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// Sources: Output only. Sources for the agent action suggestion.Sources *GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources `json:"sources,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion:Actions suggested for the agent. This is based on applicable instructions.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult struct {// DuplicateSuggestions: Output only. The duplicate suggestions.DuplicateSuggestions []*GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion `json:"duplicateSuggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateSuggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateSuggestions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult:Duplication check for the suggestion.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestionadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion struct {// AnswerRecord: Output only. The answer record id of the past duplicate// suggestion.AnswerRecordstring `json:"answerRecord,omitempty"`// SimilarityScore: Output only. The similarity score of between the past and// current suggestion.SimilarityScorefloat64 `json:"similarityScore,omitempty"`// Sources: Output only. Sources for the suggestion.Sources *GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources `json:"sources,omitempty"`// SuggestionIndex: Output only. The index of the duplicate suggestion in the// past suggestion list.SuggestionIndexint64 `json:"suggestionIndex,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion: The duplicate suggestion details. Keeping answer_record andsources together as they are identifiers for duplicate suggestions.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion)MarshalJSONadded inv0.252.0

func (*GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion)UnmarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponseadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse struct {// DuplicateCheckResult: Output only. Duplicate check result for the sample// response.DuplicateCheckResult *GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult `json:"duplicateCheckResult,omitempty"`// ResponseText: Optional. Sample response for Agent in text.ResponseTextstring `json:"responseText,omitempty"`// Sources: Output only. Sources for the Sample Response.Sources *GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources `json:"sources,omitempty"`// ForceSendFields is a list of field names (e.g. "DuplicateCheckResult") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DuplicateCheckResult") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse: Sampleresponse that the agent can use. This could be based on applicableinstructions and ingested data from other systems.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AgentCoachingSuggestionSourcesadded inv0.252.0

type GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources struct {// InstructionIndexes: Output only. Source instruction indexes for the// suggestion. This is the index of the applicable_instructions field.InstructionIndexes []int64 `json:"instructionIndexes,omitempty"`// ForceSendFields is a list of field names (e.g. "InstructionIndexes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "InstructionIndexes") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources: Sources for thesuggestion.

func (GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources)MarshalJSONadded inv0.252.0

typeGoogleCloudDialogflowV2beta1AnnotatedMessagePartadded inv0.42.0

type GoogleCloudDialogflowV2beta1AnnotatedMessagePart struct {// EntityType: Optional. The Dialogflow system entity type// (https://cloud.google.com/dialogflow/docs/reference/system-entities) of this// message part. If this is empty, Dialogflow could not annotate the phrase// part with a system entity.EntityTypestring `json:"entityType,omitempty"`// FormattedValue: Optional. The Dialogflow system entity formatted value// (https://cloud.google.com/dialogflow/docs/reference/system-entities) of this// message part. For example for a system entity of type `@sys.unit-currency`,// this may contain: { "amount": 5, "currency": "USD" }FormattedValue interface{} `json:"formattedValue,omitempty"`// Text: Required. A part of a message possibly annotated with an entity.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityType") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1AnnotatedMessagePart: Represents a part of amessage possibly annotated with an entity. The part can be an entity orpurely a part of the message between two entities or message start/end.

func (GoogleCloudDialogflowV2beta1AnnotatedMessagePart)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1ArticleAnsweradded inv0.42.0

type GoogleCloudDialogflowV2beta1ArticleAnswer struct {// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Metadata: A map that contains metadata about the answer and the document// from which it originates.Metadata map[string]string `json:"metadata,omitempty"`// Snippets: Output only. Article snippets.Snippets []string `json:"snippets,omitempty"`// Title: The article title.Titlestring `json:"title,omitempty"`// Uri: The article URI.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ArticleAnswer: Represents article answer.

func (GoogleCloudDialogflowV2beta1ArticleAnswer)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse

type GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse struct {// EntityTypes: The collection of updated or created entity types.EntityTypes []*GoogleCloudDialogflowV2beta1EntityType `json:"entityTypes,omitempty"`// ForceSendFields is a list of field names (e.g. "EntityTypes") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EntityTypes") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse: The responsemessage for EntityTypes.BatchUpdateEntityTypes.

func (GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse)MarshalJSON

typeGoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse

type GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse struct {// Intents: The collection of updated or created intents.Intents []*GoogleCloudDialogflowV2beta1Intent `json:"intents,omitempty"`// ForceSendFields is a list of field names (e.g. "Intents") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Intents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse: The response messagefor Intents.BatchUpdateIntents.

func (GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse)MarshalJSON

typeGoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata struct {// ConversationProfile: The resource name of the conversation profile. Format:// `projects//locations//conversationProfiles/`ConversationProfilestring `json:"conversationProfile,omitempty"`// CreateTime: Timestamp whe the request was created. The time is measured on// server side.CreateTimestring `json:"createTime,omitempty"`// ParticipantRole: Required. The participant role to remove the suggestion// feature config. Only HUMAN_AGENT or END_USER can be used.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// SuggestionFeatureType: Required. The type of the suggestion feature to// remove.//// Possible values://   "TYPE_UNSPECIFIED" - Unspecified feature type.//   "ARTICLE_SUGGESTION" - Run article suggestion model for chat.//   "FAQ" - Run FAQ model.//   "SMART_REPLY" - Run smart reply model for chat.//   "DIALOGFLOW_ASSIST" - Run Dialogflow assist model for chat, which will// return automated agent response as suggestion.//   "CONVERSATION_SUMMARIZATION" - Run conversation summarization model for// chat.//   "KNOWLEDGE_SEARCH" - Run knowledge search with text input from agent or// text generated query.//   "KNOWLEDGE_ASSIST" - Run knowledge assist with automatic query generation.SuggestionFeatureTypestring `json:"suggestionFeatureType,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationProfile") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationProfile") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata:Metadata for a ConversationProfile.ClearSuggestionFeatureConfig operation.

func (GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2beta1Context

type GoogleCloudDialogflowV2beta1Context struct {// LifespanCount: Optional. The number of conversational query requests after// which the context expires. The default is `0`. If set to `0`, the context// expires immediately. Contexts expire automatically after 20 minutes if there// are no matching queries.LifespanCountint64 `json:"lifespanCount,omitempty"`// Name: Required. The unique identifier of the context. Supported formats: -// `projects//agent/sessions//contexts/`, -// `projects//locations//agent/sessions//contexts/`, -// `projects//agent/environments//users//sessions//contexts/`, -// `projects//locations//agent/environments//users//sessions//contexts/`, The// `Context ID` is always converted to lowercase, may only contain characters// in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `Environment ID` is// not specified, we assume default 'draft' environment. If `User ID` is not// specified, we assume default '-' user. The following context names are// reserved for internal use by Dialogflow. You should not use these contexts// or create contexts with these names: * `__system_counters__` *// `*_id_dialog_context` * `*_dialog_params_size`Namestring `json:"name,omitempty"`// Parameters: Optional. The collection of parameters associated with this// context. Depending on your protocol or client library language, this is a// map, associative array, symbol table, dictionary, or JSON object composed of// a collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey// value: parameter name * MapValue type: If parameter's entity type is a// composite entity then use map, otherwise, depending on the parameter value// type, it could be one of string, number, boolean, null, list or map. *// MapValue value: If parameter's entity type is a composite entity then use// map from composite entity property names to property values, otherwise, use// parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "LifespanCount") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LifespanCount") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1Context: Dialogflow contexts are similar tonatural language context. If a person says to you "they are orange", youneed context in order to understand what "they" is referring to. Similarly,for Dialogflow to handle an end-user expression like that, it needs to beprovided with context in order to correctly match an intent. Using contexts,you can control the flow of a conversation. You can configure contexts foran intent by setting input and output contexts, which are identified bystring names. When an intent is matched, any configured output contexts forthat intent become active. While any contexts are active, Dialogflow is morelikely to match intents that are configured with input contexts thatcorrespond to the currently active contexts. For more information aboutcontext, see the Contexts guide(https://cloud.google.com/dialogflow/docs/contexts-overview).

func (GoogleCloudDialogflowV2beta1Context)MarshalJSON

typeGoogleCloudDialogflowV2beta1ConversationEventadded inv0.42.0

type GoogleCloudDialogflowV2beta1ConversationEvent struct {// Conversation: Required. The unique identifier of the conversation this// notification refers to. Format: `projects//conversations/`.Conversationstring `json:"conversation,omitempty"`// ErrorStatus: Optional. More detailed information about an error. Only set// for type UNRECOVERABLE_ERROR_IN_PHONE_CALL.ErrorStatus *GoogleRpcStatus `json:"errorStatus,omitempty"`// NewMessagePayload: Payload of NEW_MESSAGE event.NewMessagePayload *GoogleCloudDialogflowV2beta1Message `json:"newMessagePayload,omitempty"`// NewRecognitionResultPayload: Payload of NEW_RECOGNITION_RESULT event.NewRecognitionResultPayload *GoogleCloudDialogflowV2beta1StreamingRecognitionResult `json:"newRecognitionResultPayload,omitempty"`// Type: Required. The type of the event that this notification refers to.//// Possible values://   "TYPE_UNSPECIFIED" - Type not set.//   "CONVERSATION_STARTED" - A new conversation has been opened. This is fired// when a telephone call is answered, or a conversation is created via the API.//   "CONVERSATION_FINISHED" - An existing conversation has closed. This is// fired when a telephone call is terminated, or a conversation is closed via// the API. The event is fired for every CompleteConversation call, even if the// conversation is already closed.//   "HUMAN_INTERVENTION_NEEDED" - An existing conversation has received// notification from Dialogflow that human intervention is required.//   "NEW_MESSAGE" - An existing conversation has received a new message,// either from API or telephony. It is configured in// ConversationProfile.new_message_event_notification_config//   "NEW_RECOGNITION_RESULT" - An existing conversation has received a new// speech recognition result. This is mainly for delivering intermediate// transcripts. The notification is configured in// ConversationProfile.new_recognition_event_notification_config.//   "UNRECOVERABLE_ERROR" - Unrecoverable error during a telephone call. In// general non-recoverable errors only occur if something was misconfigured in// the ConversationProfile corresponding to the call. After a non-recoverable// error, Dialogflow may stop responding. We don't fire this event: * in an API// call because we can directly return the error, or, * when we can recover// from an error.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Conversation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conversation") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ConversationEvent: Represents a notificationsent to Pub/Sub subscribers for conversation lifecycle events.

func (GoogleCloudDialogflowV2beta1ConversationEvent)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1DialogflowAssistAnsweradded inv0.125.0

type GoogleCloudDialogflowV2beta1DialogflowAssistAnswer struct {// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// IntentSuggestion: An intent suggestion generated from conversation.IntentSuggestion *GoogleCloudDialogflowV2beta1IntentSuggestion `json:"intentSuggestion,omitempty"`// QueryResult: Result from v2 agent.QueryResult *GoogleCloudDialogflowV2beta1QueryResult `json:"queryResult,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1DialogflowAssistAnswer: Represents a Dialogflowassist answer.

func (GoogleCloudDialogflowV2beta1DialogflowAssistAnswer)MarshalJSONadded inv0.125.0

typeGoogleCloudDialogflowV2beta1EncryptionSpecadded inv0.149.0

type GoogleCloudDialogflowV2beta1EncryptionSpec struct {// KmsKey: Required. The name of customer-managed encryption key that is used// to secure a resource and its sub-resources. If empty, the resource is// secured by the default Google encryption key. Only the key in the same// location as this resource is allowed to be used for encryption. Format:// `projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{key}`KmsKeystring `json:"kmsKey,omitempty"`// Name: Immutable. The resource name of the encryption key specification// resource. Format: projects/{project}/locations/{location}/encryptionSpecNamestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "KmsKey") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "KmsKey") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1EncryptionSpec: A customer-managed encryptionkey specification that can be applied to all created resources (e.g.Conversation).

func (GoogleCloudDialogflowV2beta1EncryptionSpec)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2beta1EntityType

type GoogleCloudDialogflowV2beta1EntityType struct {// AutoExpansionMode: Optional. Indicates whether the entity type can be// automatically expanded.//// Possible values://   "AUTO_EXPANSION_MODE_UNSPECIFIED" - Auto expansion disabled for the// entity.//   "AUTO_EXPANSION_MODE_DEFAULT" - Allows an agent to recognize values that// have not been explicitly listed in the entity.AutoExpansionModestring `json:"autoExpansionMode,omitempty"`// DisplayName: Required. The name of the entity type.DisplayNamestring `json:"displayName,omitempty"`// EnableFuzzyExtraction: Optional. Enables fuzzy entity extraction during// classification.EnableFuzzyExtractionbool `json:"enableFuzzyExtraction,omitempty"`// Entities: Optional. The collection of entity entries associated with the// entity type.Entities []*GoogleCloudDialogflowV2beta1EntityTypeEntity `json:"entities,omitempty"`// Kind: Required. Indicates the kind of entity type.//// Possible values://   "KIND_UNSPECIFIED" - Not specified. This value should be never used.//   "KIND_MAP" - Map entity types allow mapping of a group of synonyms to a// reference value.//   "KIND_LIST" - List entity types contain a set of entries that do not map// to reference values. However, list entity types can contain references to// other entity types (with or without aliases).//   "KIND_REGEXP" - Regexp entity types allow to specify regular expressions// in entries values.Kindstring `json:"kind,omitempty"`// Name: The unique identifier of the entity type. Required for// EntityTypes.UpdateEntityType and EntityTypes.BatchUpdateEntityTypes methods.// Supported formats: - `projects//agent/entityTypes/` -// `projects//locations//agent/entityTypes/`Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "AutoExpansionMode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AutoExpansionMode") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1EntityType: Each intent parameter has a type,called the entity type, which dictates exactly how data from an end-userexpression is extracted. Dialogflow provides predefined system entities thatcan match many common types of data. For example, there are system entitiesfor matching dates, times, colors, email addresses, and so on. You can alsocreate your own custom entities for matching custom data. For example, youcould define a vegetable entity that can match the types of vegetablesavailable for purchase with a grocery store agent. For more information, seethe Entity guide(https://cloud.google.com/dialogflow/docs/entities-overview).

func (GoogleCloudDialogflowV2beta1EntityType)MarshalJSON

typeGoogleCloudDialogflowV2beta1EntityTypeEntity

type GoogleCloudDialogflowV2beta1EntityTypeEntity struct {// Synonyms: Required. A collection of value synonyms. For example, if the// entity type is *vegetable*, and `value` is *scallions*, a synonym could be// *green onions*. For `KIND_LIST` entity types: * This collection must contain// exactly one synonym equal to `value`.Synonyms []string `json:"synonyms,omitempty"`// Value: Required. The primary value associated with this entity entry. For// example, if the entity type is *vegetable*, the value could be *scallions*.// For `KIND_MAP` entity types: * A reference value to be used in place of// synonyms. For `KIND_LIST` entity types: * A string that can contain// references to other entity types (with or without aliases).Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Synonyms") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Synonyms") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1EntityTypeEntity: An **entity entry** for anassociated entity type.

func (GoogleCloudDialogflowV2beta1EntityTypeEntity)MarshalJSON

typeGoogleCloudDialogflowV2beta1EventInput

type GoogleCloudDialogflowV2beta1EventInput struct {// LanguageCode: Required. The language of this query. See Language Support// (https://cloud.google.com/dialogflow/docs/reference/language) for a list of// the currently supported language codes. Note that queries in the same// session do not necessarily need to specify the same language. This field is// ignored when used in the context of a WebhookResponse.followup_event_input// field, because the language was already defined in the originating detect// intent request.LanguageCodestring `json:"languageCode,omitempty"`// Name: Required. The unique identifier of the event.Namestring `json:"name,omitempty"`// Parameters: The collection of parameters associated with the event.// Depending on your protocol or client library language, this is a map,// associative array, symbol table, dictionary, or JSON object composed of a// collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey// value: parameter name * MapValue type: If parameter's entity type is a// composite entity then use map, otherwise, depending on the parameter value// type, it could be one of string, number, boolean, null, list or map. *// MapValue value: If parameter's entity type is a composite entity then use// map from composite entity property names to property values, otherwise, use// parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// ForceSendFields is a list of field names (e.g. "LanguageCode") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "LanguageCode") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1EventInput: Events allow for matching intents byevent name instead of the natural language input. For instance, input “ cantrigger a personalized welcome response. The parameter `name` may be used bythe agent in the response: "Hello #welcome_event.name! What can I do foryou today?".

func (GoogleCloudDialogflowV2beta1EventInput)MarshalJSON

typeGoogleCloudDialogflowV2beta1ExportAgentResponse

type GoogleCloudDialogflowV2beta1ExportAgentResponse struct {// AgentContent: Zip compressed raw byte content for agent.AgentContentstring `json:"agentContent,omitempty"`// AgentUri: The URI to a file containing the exported agent. This field is// populated only if `agent_uri` is specified in `ExportAgentRequest`.AgentUristring `json:"agentUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ExportAgentResponse: The response message forAgents.ExportAgent.

func (GoogleCloudDialogflowV2beta1ExportAgentResponse)MarshalJSON

typeGoogleCloudDialogflowV2beta1ExportOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2beta1ExportOperationMetadata struct {// ExportedGcsDestination: Cloud Storage file path of the exported data.ExportedGcsDestination *GoogleCloudDialogflowV2beta1GcsDestination `json:"exportedGcsDestination,omitempty"`// ForceSendFields is a list of field names (e.g. "ExportedGcsDestination") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExportedGcsDestination") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ExportOperationMetadata: Metadata related to theExport Data Operations (e.g. ExportDocument).

func (GoogleCloudDialogflowV2beta1ExportOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2beta1FaqAnsweradded inv0.42.0

type GoogleCloudDialogflowV2beta1FaqAnswer struct {// Answer: The piece of text from the `source` knowledge base document.Answerstring `json:"answer,omitempty"`// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Confidence: The system's confidence score that this Knowledge answer is a// good match for this conversational query, range from 0.0 (completely// uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// Metadata: A map that contains metadata about the answer and the document// from which it originates.Metadata map[string]string `json:"metadata,omitempty"`// Question: The corresponding FAQ question.Questionstring `json:"question,omitempty"`// Source: Indicates which Knowledge Document this answer was extracted from.// Format: `projects//locations//agent/knowledgeBases//documents/`.Sourcestring `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "Answer") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Answer") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1FaqAnswer: Represents answer from "frequentlyasked questions".

func (GoogleCloudDialogflowV2beta1FaqAnswer)MarshalJSONadded inv0.42.0

func (*GoogleCloudDialogflowV2beta1FaqAnswer)UnmarshalJSONadded inv0.42.0

func (s *GoogleCloudDialogflowV2beta1FaqAnswer) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2beta1FreeFormSuggestionadded inv0.226.0

type GoogleCloudDialogflowV2beta1FreeFormSuggestion struct {// Response: Required. Free form suggestion.Responsestring `json:"response,omitempty"`// ForceSendFields is a list of field names (e.g. "Response") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Response") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1FreeFormSuggestion: Suggestion generated usingfree form generator.

func (GoogleCloudDialogflowV2beta1FreeFormSuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1GcsDestinationadded inv0.71.0

type GoogleCloudDialogflowV2beta1GcsDestination struct {// Uri: Required. The Google Cloud Storage URIs for the output. A URI is of the// form: `gs://bucket/object-prefix-or-name` Whether a prefix or name is used// depends on the use case. The requesting user must have "write-permission" to// the bucket.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1GcsDestination: Google Cloud Storage locationfor the output.

func (GoogleCloudDialogflowV2beta1GcsDestination)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2beta1GenerateSuggestionsResponseadded inv0.226.0

type GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse struct {// GeneratorSuggestionAnswers: The answers generated for the conversation based// on context.GeneratorSuggestionAnswers []*GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer `json:"generatorSuggestionAnswers,omitempty"`// LatestMessage: The name of the latest conversation message used as context// for compiling suggestion. Format:// `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "GeneratorSuggestionAnswers")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "GeneratorSuggestionAnswers") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse: The responsemessage for Conversations.GenerateSuggestions.

func (GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnsweradded inv0.226.0

type GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer struct {// AnswerRecord: Answer record that uniquely identifies the suggestion. This// can be used to provide suggestion feedback.AnswerRecordstring `json:"answerRecord,omitempty"`// GeneratorSuggestion: Suggestion details.GeneratorSuggestion *GoogleCloudDialogflowV2beta1GeneratorSuggestion `json:"generatorSuggestion,omitempty"`// SourceGenerator: The name of the generator used to generate this suggestion.// Format: `projects//locations//generators/`.SourceGeneratorstring `json:"sourceGenerator,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer: A GeneratorSuggestion answer.

func (GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1GeneratorSuggestionadded inv0.226.0

type GoogleCloudDialogflowV2beta1GeneratorSuggestion struct {// AgentCoachingSuggestion: Optional. Suggestion to coach the agent.AgentCoachingSuggestion *GoogleCloudDialogflowV2beta1AgentCoachingSuggestion `json:"agentCoachingSuggestion,omitempty"`// FreeFormSuggestion: Optional. Free form suggestion.FreeFormSuggestion *GoogleCloudDialogflowV2beta1FreeFormSuggestion `json:"freeFormSuggestion,omitempty"`// SummarySuggestion: Optional. Suggested summary.SummarySuggestion *GoogleCloudDialogflowV2beta1SummarySuggestion `json:"summarySuggestion,omitempty"`// ToolCallInfo: Optional. List of request and response for tool calls// executed.ToolCallInfo []*GoogleCloudDialogflowV2beta1GeneratorSuggestionToolCallInfo `json:"toolCallInfo,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentCoachingSuggestion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentCoachingSuggestion") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1GeneratorSuggestion: Suggestion generated usinga Generator.

func (GoogleCloudDialogflowV2beta1GeneratorSuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1GeneratorSuggestionToolCallInfoadded inv0.229.0

type GoogleCloudDialogflowV2beta1GeneratorSuggestionToolCallInfo struct {// ToolCall: Required. Request for a tool call.ToolCall *GoogleCloudDialogflowV2beta1ToolCall `json:"toolCall,omitempty"`// ToolCallResult: Required. Response for a tool call.ToolCallResult *GoogleCloudDialogflowV2beta1ToolCallResult `json:"toolCallResult,omitempty"`// ForceSendFields is a list of field names (e.g. "ToolCall") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ToolCall") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1GeneratorSuggestionToolCallInfo: Request andresponse for a tool call.

func (GoogleCloudDialogflowV2beta1GeneratorSuggestionToolCallInfo)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2beta1HumanAgentAssistantEventadded inv0.42.0

type GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent struct {// Conversation: The conversation this notification refers to. Format:// `projects//conversations/`.Conversationstring `json:"conversation,omitempty"`// Participant: The participant that the suggestion is compiled for. And This// field is used to call Participants.ListSuggestions API. Format:// `projects//conversations//participants/`. It will not be set in legacy// workflow. HumanAgentAssistantConfig.name for more information.Participantstring `json:"participant,omitempty"`// SuggestionResults: The suggestion results payload that this notification// refers to. It will only be set when// HumanAgentAssistantConfig.SuggestionConfig.group_suggestion_responses sets// to true.SuggestionResults []*GoogleCloudDialogflowV2beta1SuggestionResult `json:"suggestionResults,omitempty"`// ForceSendFields is a list of field names (e.g. "Conversation") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Conversation") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent: Output only.Represents a notification sent to Pub/Sub subscribers for agent assistantevents in a specific conversation.

func (GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1ImportDocumentsResponseadded inv0.33.0

type GoogleCloudDialogflowV2beta1ImportDocumentsResponse struct {// Warnings: Includes details about skipped documents or any other warnings.Warnings []*GoogleRpcStatus `json:"warnings,omitempty"`// ForceSendFields is a list of field names (e.g. "Warnings") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Warnings") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ImportDocumentsResponse: Response message forDocuments.ImportDocuments.

func (GoogleCloudDialogflowV2beta1ImportDocumentsResponse)MarshalJSONadded inv0.33.0

typeGoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadataadded inv0.149.0

type GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata struct {// Request: Output only. The original request for initialization.Request *GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest `json:"request,omitempty"`// ForceSendFields is a list of field names (e.g. "Request") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Request") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata: Metadata forinitializing a location-level encryption specification.

func (GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequestadded inv0.149.0

type GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest struct {// EncryptionSpec: Required. The encryption spec used for CMEK encryption. It// is required that the kms key is in the same region as the endpoint. The same// key will be used for all provisioned resources, if encryption is available.// If the kms_key_name is left empty, no encryption will be enforced.EncryptionSpec *GoogleCloudDialogflowV2beta1EncryptionSpec `json:"encryptionSpec,omitempty"`// ForceSendFields is a list of field names (e.g. "EncryptionSpec") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EncryptionSpec") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest: The request toinitialize a location-level encryption specification.

func (GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest)MarshalJSONadded inv0.149.0

typeGoogleCloudDialogflowV2beta1Intent

type GoogleCloudDialogflowV2beta1Intent struct {// Action: Optional. The name of the action associated with the intent. Note:// The action name must not contain whitespaces.Actionstring `json:"action,omitempty"`// DefaultResponsePlatforms: Optional. The list of platforms for which the// first responses will be copied from the messages in PLATFORM_UNSPECIFIED// (i.e. default platform).//// Possible values://   "PLATFORM_UNSPECIFIED" - Not specified.//   "FACEBOOK" - Facebook.//   "SLACK" - Slack.//   "TELEGRAM" - Telegram.//   "KIK" - Kik.//   "SKYPE" - Skype.//   "LINE" - Line.//   "VIBER" - Viber.//   "ACTIONS_ON_GOOGLE" - Google Assistant See [Dialogflow webhook// format](https://developers.google.com/assistant/actions/build/json/dialogflow// -webhook-json)//   "TELEPHONY" - Telephony Gateway.//   "GOOGLE_HANGOUTS" - Google Hangouts.DefaultResponsePlatforms []string `json:"defaultResponsePlatforms,omitempty"`// DisplayName: Required. The name of this intent.DisplayNamestring `json:"displayName,omitempty"`// EndInteraction: Optional. Indicates that this intent ends an interaction.// Some integrations (e.g., Actions on Google or Dialogflow phone gateway) use// this information to close interaction with an end user. Default is false.EndInteractionbool `json:"endInteraction,omitempty"`// Events: Optional. The collection of event names that trigger the intent. If// the collection of input contexts is not empty, all of the contexts must be// present in the active user session for an event to trigger this intent.// Event names are limited to 150 characters.Events []string `json:"events,omitempty"`// FollowupIntentInfo: Output only. Information about all followup intents that// have this intent as a direct or indirect parent. We populate this field only// in the output.FollowupIntentInfo []*GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo `json:"followupIntentInfo,omitempty"`// InputContextNames: Optional. The list of context names required for this// intent to be triggered. Formats: - `projects//agent/sessions/-/contexts/` -// `projects//locations//agent/sessions/-/contexts/`InputContextNames []string `json:"inputContextNames,omitempty"`// IsFallback: Optional. Indicates whether this is a fallback intent.IsFallbackbool `json:"isFallback,omitempty"`// LiveAgentHandoff: Optional. Indicates that a live agent should be brought in// to handle the interaction with the user. In most cases, when you set this// flag to true, you would also want to set end_interaction to true as well.// Default is false.LiveAgentHandoffbool `json:"liveAgentHandoff,omitempty"`// Messages: Optional. The collection of rich messages corresponding to the// `Response` field in the Dialogflow console.Messages []*GoogleCloudDialogflowV2beta1IntentMessage `json:"messages,omitempty"`// MlDisabled: Optional. Indicates whether Machine Learning is disabled for the// intent. Note: If `ml_disabled` setting is set to true, then this intent is// not taken into account during inference in `ML ONLY` match mode. Also,// auto-markup in the UI is turned off.MlDisabledbool `json:"mlDisabled,omitempty"`// MlEnabled: Optional. Indicates whether Machine Learning is enabled for the// intent. Note: If `ml_enabled` setting is set to false, then this intent is// not taken into account during inference in `ML ONLY` match mode. Also,// auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled`// field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not// set or false, then the default value is determined as follows: - Before// April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. -// After April 15th, 2018 the default is: ml_enabled = true / ml_disabled =// false.MlEnabledbool `json:"mlEnabled,omitempty"`// Name: Optional. The unique identifier of this intent. Required for// Intents.UpdateIntent and Intents.BatchUpdateIntents methods. Supported// formats: - `projects//agent/intents/` -// `projects//locations//agent/intents/`Namestring `json:"name,omitempty"`// OutputContexts: Optional. The collection of contexts that are activated when// the intent is matched. Context messages in this collection should not set// the parameters field. Setting the `lifespan_count` to 0 will reset the// context when the intent is matched. Format:// `projects//agent/sessions/-/contexts/`.OutputContexts []*GoogleCloudDialogflowV2beta1Context `json:"outputContexts,omitempty"`// Parameters: Optional. The collection of parameters associated with the// intent.Parameters []*GoogleCloudDialogflowV2beta1IntentParameter `json:"parameters,omitempty"`// ParentFollowupIntentName: Optional. The unique identifier of the parent// intent in the chain of followup intents. You can set this field when// creating an intent, for example with CreateIntent or BatchUpdateIntents, in// order to make this intent a followup intent. It identifies the parent// followup intent. Format: `projects//agent/intents/`.ParentFollowupIntentNamestring `json:"parentFollowupIntentName,omitempty"`// Priority: Optional. The priority of this intent. Higher numbers represent// higher priorities. - If the supplied value is unspecified or 0, the service// translates the value to 500,000, which corresponds to the `Normal` priority// in the console. - If the supplied value is negative, the intent is ignored// in runtime detect intent requests.Priorityint64 `json:"priority,omitempty"`// ResetContexts: Optional. Indicates whether to delete all contexts in the// current session when this intent is matched.ResetContextsbool `json:"resetContexts,omitempty"`// RootFollowupIntentName: Output only. The unique identifier of the root// intent in the chain of followup intents. It identifies the correct followup// intents chain for this intent. Format: `projects//agent/intents/`.RootFollowupIntentNamestring `json:"rootFollowupIntentName,omitempty"`// TrainingPhrases: Optional. The collection of examples that the agent is// trained on.TrainingPhrases []*GoogleCloudDialogflowV2beta1IntentTrainingPhrase `json:"trainingPhrases,omitempty"`// WebhookState: Optional. Indicates whether webhooks are enabled for the// intent.//// Possible values://   "WEBHOOK_STATE_UNSPECIFIED" - Webhook is disabled in the agent and in the// intent.//   "WEBHOOK_STATE_ENABLED" - Webhook is enabled in the agent and in the// intent.//   "WEBHOOK_STATE_ENABLED_FOR_SLOT_FILLING" - Webhook is enabled in the agent// and in the intent. Also, each slot filling prompt is forwarded to the// webhook.WebhookStatestring `json:"webhookState,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1Intent: An intent categorizes an end-user'sintention for one conversation turn. For each agent, you define manyintents, where your combined intents can handle a complete conversation.When an end-user writes or says something, referred to as an end-userexpression or end-user input, Dialogflow matches the end-user input to thebest intent in your agent. Matching an intent is also known as intentclassification. For more information, see the intent guide(https://cloud.google.com/dialogflow/docs/intents-overview).

func (GoogleCloudDialogflowV2beta1Intent)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentFollowupIntentInfo

type GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo struct {// FollowupIntentName: The unique identifier of the followup intent. Format:// `projects//agent/intents/`.FollowupIntentNamestring `json:"followupIntentName,omitempty"`// ParentFollowupIntentName: The unique identifier of the followup intent's// parent. Format: `projects//agent/intents/`.ParentFollowupIntentNamestring `json:"parentFollowupIntentName,omitempty"`// ForceSendFields is a list of field names (e.g. "FollowupIntentName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FollowupIntentName") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo: Represents a singlefollowup intent in the chain.

func (GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessage

type GoogleCloudDialogflowV2beta1IntentMessage struct {// BasicCard: Displays a basic card for Actions on Google.BasicCard *GoogleCloudDialogflowV2beta1IntentMessageBasicCard `json:"basicCard,omitempty"`// BrowseCarouselCard: Browse carousel card for Actions on Google.BrowseCarouselCard *GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard `json:"browseCarouselCard,omitempty"`// Card: Displays a card.Card *GoogleCloudDialogflowV2beta1IntentMessageCard `json:"card,omitempty"`// CarouselSelect: Displays a carousel card for Actions on Google.CarouselSelect *GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect `json:"carouselSelect,omitempty"`// Image: Displays an image.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// LinkOutSuggestion: Displays a link out suggestion chip for Actions on// Google.LinkOutSuggestion *GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion `json:"linkOutSuggestion,omitempty"`// ListSelect: Displays a list card for Actions on Google.ListSelect *GoogleCloudDialogflowV2beta1IntentMessageListSelect `json:"listSelect,omitempty"`// MediaContent: The media content card for Actions on Google.MediaContent *GoogleCloudDialogflowV2beta1IntentMessageMediaContent `json:"mediaContent,omitempty"`// Payload: A custom platform-specific response.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// Platform: Optional. The platform that this message is intended for.//// Possible values://   "PLATFORM_UNSPECIFIED" - Not specified.//   "FACEBOOK" - Facebook.//   "SLACK" - Slack.//   "TELEGRAM" - Telegram.//   "KIK" - Kik.//   "SKYPE" - Skype.//   "LINE" - Line.//   "VIBER" - Viber.//   "ACTIONS_ON_GOOGLE" - Google Assistant See [Dialogflow webhook// format](https://developers.google.com/assistant/actions/build/json/dialogflow// -webhook-json)//   "TELEPHONY" - Telephony Gateway.//   "GOOGLE_HANGOUTS" - Google Hangouts.Platformstring `json:"platform,omitempty"`// QuickReplies: Displays quick replies.QuickReplies *GoogleCloudDialogflowV2beta1IntentMessageQuickReplies `json:"quickReplies,omitempty"`// RbmCarouselRichCard: Rich Business Messaging (RBM) carousel rich card// response.RbmCarouselRichCard *GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard `json:"rbmCarouselRichCard,omitempty"`// RbmStandaloneRichCard: Standalone Rich Business Messaging (RBM) rich card// response.RbmStandaloneRichCard *GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard `json:"rbmStandaloneRichCard,omitempty"`// RbmText: Rich Business Messaging (RBM) text response. RBM allows businesses// to send enriched and branded versions of SMS. See//https://jibe.google.com/business-messaging.RbmText *GoogleCloudDialogflowV2beta1IntentMessageRbmText `json:"rbmText,omitempty"`// SimpleResponses: Returns a voice or text-only response for Actions on// Google.SimpleResponses *GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses `json:"simpleResponses,omitempty"`// Suggestions: Displays suggestion chips for Actions on Google.Suggestions *GoogleCloudDialogflowV2beta1IntentMessageSuggestions `json:"suggestions,omitempty"`// TableCard: Table card for Actions on Google.TableCard *GoogleCloudDialogflowV2beta1IntentMessageTableCard `json:"tableCard,omitempty"`// TelephonyPlayAudio: Plays audio from a file in Telephony Gateway.TelephonyPlayAudio *GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio `json:"telephonyPlayAudio,omitempty"`// TelephonySynthesizeSpeech: Synthesizes speech in Telephony Gateway.TelephonySynthesizeSpeech *GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech `json:"telephonySynthesizeSpeech,omitempty"`// TelephonyTransferCall: Transfers the call in Telephony Gateway.TelephonyTransferCall *GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall `json:"telephonyTransferCall,omitempty"`// Text: Returns a text response.Text *GoogleCloudDialogflowV2beta1IntentMessageText `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "BasicCard") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "BasicCard") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessage: Corresponds to the `Response`field in the Dialogflow console.

func (GoogleCloudDialogflowV2beta1IntentMessage)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBasicCard

type GoogleCloudDialogflowV2beta1IntentMessageBasicCard struct {// Buttons: Optional. The collection of card buttons.Buttons []*GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton `json:"buttons,omitempty"`// FormattedText: Required, unless image is present. The body text of the card.FormattedTextstring `json:"formattedText,omitempty"`// Image: Optional. The image for the card.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// Subtitle: Optional. The subtitle of the card.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBasicCard: The basic card message.Useful for displaying information.

func (GoogleCloudDialogflowV2beta1IntentMessageBasicCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBasicCardButton

type GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton struct {// OpenUriAction: Required. Action to take when a user taps on the button.OpenUriAction *GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction `json:"openUriAction,omitempty"`// Title: Required. The title of the button.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "OpenUriAction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "OpenUriAction") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton: The button objectthat appears at the bottom of a card.

func (GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction

type GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction struct {// Uri: Required. The HTTP or HTTPS scheme URI.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction: Opensthe given URI.

func (GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard

type GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard struct {// ImageDisplayOptions: Optional. Settings for displaying the image. Applies to// every image in items.//// Possible values://   "IMAGE_DISPLAY_OPTIONS_UNSPECIFIED" - Fill the gaps between the image and// the image container with gray bars.//   "GRAY" - Fill the gaps between the image and the image container with gray// bars.//   "WHITE" - Fill the gaps between the image and the image container with// white bars.//   "CROPPED" - Image is scaled such that the image width and height match or// exceed the container dimensions. This may crop the top and bottom of the// image if the scaled image height is greater than the container height, or// crop the left and right of the image if the scaled image width is greater// than the container width. This is similar to "Zoom Mode" on a widescreen TV// when playing a 4:3 video.//   "BLURRED_BACKGROUND" - Pad the gaps between image and image frame with a// blurred copy of the same image.ImageDisplayOptionsstring `json:"imageDisplayOptions,omitempty"`// Items: Required. List of items in the Browse Carousel Card. Minimum of two// items, maximum of ten.Items []*GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem `json:"items,omitempty"`// ForceSendFields is a list of field names (e.g. "ImageDisplayOptions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ImageDisplayOptions") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard: Browse CarouselCard for Actions on Google.https://developers.google.com/actions/assistant/responses#browsing_carousel

func (GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem

type GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem struct {// Description: Optional. Description of the carousel item. Maximum of four// lines of text.Descriptionstring `json:"description,omitempty"`// Footer: Optional. Text that appears at the bottom of the Browse Carousel// Card. Maximum of one line of text.Footerstring `json:"footer,omitempty"`// Image: Optional. Hero image for the carousel item.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// OpenUriAction: Required. Action to present to the user.OpenUriAction *GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction `json:"openUriAction,omitempty"`// Title: Required. Title of the carousel item. Maximum of two lines of text.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem: Browsing carousel tile

func (GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction

type GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction struct {// Url: Required. URLUrlstring `json:"url,omitempty"`// UrlTypeHint: Optional. Specifies the type of viewer that is used when// opening the URL. Defaults to opening via web browser.//// Possible values://   "URL_TYPE_HINT_UNSPECIFIED" - Unspecified//   "AMP_ACTION" - Url would be an amp action//   "AMP_CONTENT" - URL that points directly to AMP content, or to a canonical// URL which refers to AMP content via .UrlTypeHintstring `json:"urlTypeHint,omitempty"`// ForceSendFields is a list of field names (e.g. "Url") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Url") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction: Actions on Google action to open a given url.

func (GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageCard

type GoogleCloudDialogflowV2beta1IntentMessageCard struct {// Buttons: Optional. The collection of card buttons.Buttons []*GoogleCloudDialogflowV2beta1IntentMessageCardButton `json:"buttons,omitempty"`// ImageUri: Optional. The public URI to an image file for the card.ImageUristring `json:"imageUri,omitempty"`// Subtitle: Optional. The subtitle of the card.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageCard: The card response message.

func (GoogleCloudDialogflowV2beta1IntentMessageCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageCardButton

type GoogleCloudDialogflowV2beta1IntentMessageCardButton struct {// Postback: Optional. The text to send back to the Dialogflow API or a URI to// open.Postbackstring `json:"postback,omitempty"`// Text: Optional. The text to show on the button.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Postback") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Postback") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageCardButton: Optional. Containsinformation about a button.

func (GoogleCloudDialogflowV2beta1IntentMessageCardButton)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageCarouselSelect

type GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect struct {// Items: Required. Carousel items.Items []*GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem `json:"items,omitempty"`// ForceSendFields is a list of field names (e.g. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect: The card forpresenting a carousel of options to select from.

func (GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem

type GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem struct {// Description: Optional. The body text of the card.Descriptionstring `json:"description,omitempty"`// Image: Optional. The image to display.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// Info: Required. Additional info about the option item.Info *GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo `json:"info,omitempty"`// Title: Required. Title of the carousel item.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem: An item in thecarousel.

func (GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageColumnProperties

type GoogleCloudDialogflowV2beta1IntentMessageColumnProperties struct {// Header: Required. Column heading.Headerstring `json:"header,omitempty"`// HorizontalAlignment: Optional. Defines text alignment for all cells in this// column.//// Possible values://   "HORIZONTAL_ALIGNMENT_UNSPECIFIED" - Text is aligned to the leading edge// of the column.//   "LEADING" - Text is aligned to the leading edge of the column.//   "CENTER" - Text is centered in the column.//   "TRAILING" - Text is aligned to the trailing edge of the column.HorizontalAlignmentstring `json:"horizontalAlignment,omitempty"`// ForceSendFields is a list of field names (e.g. "Header") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Header") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageColumnProperties: Column propertiesfor TableCard.

func (GoogleCloudDialogflowV2beta1IntentMessageColumnProperties)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageImage

type GoogleCloudDialogflowV2beta1IntentMessageImage struct {// AccessibilityText: A text description of the image to be used for// accessibility, e.g., screen readers. Required if image_uri is set for// CarouselSelect.AccessibilityTextstring `json:"accessibilityText,omitempty"`// ImageUri: Optional. The public URI to an image file.ImageUristring `json:"imageUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessibilityText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AccessibilityText") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageImage: The image response message.

func (GoogleCloudDialogflowV2beta1IntentMessageImage)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion

type GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion struct {// DestinationName: Required. The name of the app or site this chip is linking// to.DestinationNamestring `json:"destinationName,omitempty"`// Uri: Required. The URI of the app or site to open when the user taps the// suggestion chip.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "DestinationName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DestinationName") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion: The suggestionchip message that allows the user to jump out to the app or websiteassociated with this agent.

func (GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageListSelect

type GoogleCloudDialogflowV2beta1IntentMessageListSelect struct {// Items: Required. List items.Items []*GoogleCloudDialogflowV2beta1IntentMessageListSelectItem `json:"items,omitempty"`// Subtitle: Optional. Subtitle of the list.Subtitlestring `json:"subtitle,omitempty"`// Title: Optional. The overall title of the list.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageListSelect: The card for presentinga list of options to select from.

func (GoogleCloudDialogflowV2beta1IntentMessageListSelect)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageListSelectItem

type GoogleCloudDialogflowV2beta1IntentMessageListSelectItem struct {// Description: Optional. The main text describing the item.Descriptionstring `json:"description,omitempty"`// Image: Optional. The image to display.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// Info: Required. Additional information about this option.Info *GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo `json:"info,omitempty"`// Title: Required. The title of the list item.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageListSelectItem: An item in thelist.

func (GoogleCloudDialogflowV2beta1IntentMessageListSelectItem)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageMediaContent

type GoogleCloudDialogflowV2beta1IntentMessageMediaContent struct {// MediaObjects: Required. List of media objects.MediaObjects []*GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject `json:"mediaObjects,omitempty"`// MediaType: Optional. What type of media is the content (ie "audio").//// Possible values://   "RESPONSE_MEDIA_TYPE_UNSPECIFIED" - Unspecified.//   "AUDIO" - Response media type is audio.MediaTypestring `json:"mediaType,omitempty"`// ForceSendFields is a list of field names (e.g. "MediaObjects") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "MediaObjects") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageMediaContent: The media contentcard for Actions on Google.

func (GoogleCloudDialogflowV2beta1IntentMessageMediaContent)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject

type GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject struct {// ContentUrl: Required. Url where the media is stored.ContentUrlstring `json:"contentUrl,omitempty"`// Description: Optional. Description of media card.Descriptionstring `json:"description,omitempty"`// Icon: Optional. Icon to display above media content.Icon *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"icon,omitempty"`// LargeImage: Optional. Image to display above media content.LargeImage *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"largeImage,omitempty"`// Name: Required. Name of media card.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "ContentUrl") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContentUrl") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject:Response media object for media content card.

func (GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageQuickReplies

type GoogleCloudDialogflowV2beta1IntentMessageQuickReplies struct {// QuickReplies: Optional. The collection of quick replies.QuickReplies []string `json:"quickReplies,omitempty"`// Title: Optional. The title of the collection of quick replies.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "QuickReplies") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QuickReplies") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageQuickReplies: The quick repliesresponse message.

func (GoogleCloudDialogflowV2beta1IntentMessageQuickReplies)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmCardContent

type GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent struct {// Description: Optional. Description of the card (at most 2000 bytes). At// least one of the title, description or media must be set.Descriptionstring `json:"description,omitempty"`// Media: Optional. However at least one of the title, description or media// must be set. Media (image, GIF or a video) to include in the card.Media *GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia `json:"media,omitempty"`// Suggestions: Optional. List of suggestions to include in the card.Suggestions []*GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion `json:"suggestions,omitempty"`// Title: Optional. Title of the card (at most 200 bytes). At least one of the// title, description or media must be set.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent: Rich BusinessMessaging (RBM) Card content

func (GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia

type GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia struct {// FileUri: Required. Publicly reachable URI of the file. The RBM platform// determines the MIME type of the file from the content-type field in the HTTP// headers when the platform fetches the file. The content-type field must be// present and accurate in the HTTP response from the URL.FileUristring `json:"fileUri,omitempty"`// Height: Required for cards with vertical orientation. The height of the// media within a rich card with a vertical layout. For a standalone card with// horizontal layout, height is not customizable, and this field is ignored.//// Possible values://   "HEIGHT_UNSPECIFIED" - Not specified.//   "SHORT" - 112 DP.//   "MEDIUM" - 168 DP.//   "TALL" - 264 DP. Not available for rich card carousels when the card width// is set to small.Heightstring `json:"height,omitempty"`// ThumbnailUri: Optional. Publicly reachable URI of the thumbnail.If you don't// provide a thumbnail URI, the RBM platform displays a blank placeholder// thumbnail until the user's device downloads the file. Depending on the// user's setting, the file may not download automatically and may require the// user to tap a download button.ThumbnailUristring `json:"thumbnailUri,omitempty"`// ForceSendFields is a list of field names (e.g. "FileUri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "FileUri") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia: RichBusiness Messaging (RBM) Media displayed in Cards The following media-typesare currently supported: Image Types * image/jpeg * image/jpg' * image/gif *image/png Video Types * video/h263 * video/m4v * video/mp4 * video/mpeg *video/mpeg4 * video/webm

func (GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard

type GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard struct {// CardContents: Required. The cards in the carousel. A carousel must have at// least 2 cards and at most 10.CardContents []*GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent `json:"cardContents,omitempty"`// CardWidth: Required. The width of the cards in the carousel.//// Possible values://   "CARD_WIDTH_UNSPECIFIED" - Not specified.//   "SMALL" - 120 DP. Note that tall media cannot be used.//   "MEDIUM" - 232 DP.CardWidthstring `json:"cardWidth,omitempty"`// ForceSendFields is a list of field names (e.g. "CardContents") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CardContents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard: Carousel RichBusiness Messaging (RBM) rich card. Rich cards allow you to respond to userswith more vivid content, e.g. with media and suggestions. If you want toshow a single card with more control over the layout, please useRbmStandaloneCard instead.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard

type GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard struct {// CardContent: Required. Card content.CardContent *GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent `json:"cardContent,omitempty"`// CardOrientation: Required. Orientation of the card.//// Possible values://   "CARD_ORIENTATION_UNSPECIFIED" - Not specified.//   "HORIZONTAL" - Horizontal layout.//   "VERTICAL" - Vertical layout.CardOrientationstring `json:"cardOrientation,omitempty"`// ThumbnailImageAlignment: Required if orientation is horizontal. Image// preview alignment for standalone cards with horizontal layout.//// Possible values://   "THUMBNAIL_IMAGE_ALIGNMENT_UNSPECIFIED" - Not specified.//   "LEFT" - Thumbnail preview is left-aligned.//   "RIGHT" - Thumbnail preview is right-aligned.ThumbnailImageAlignmentstring `json:"thumbnailImageAlignment,omitempty"`// ForceSendFields is a list of field names (e.g. "CardContent") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "CardContent") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard: Standalone RichBusiness Messaging (RBM) rich card. Rich cards allow you to respond to userswith more vivid content, e.g. with media and suggestions. You can groupmultiple rich cards into one using RbmCarouselCard but carousel cards willgive you less control over the card layout.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction struct {// Dial: Suggested client side action: Dial a phone numberDial *GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial `json:"dial,omitempty"`// OpenUrl: Suggested client side action: Open a URI on deviceOpenUrl *GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri `json:"openUrl,omitempty"`// PostbackData: Opaque payload that the Dialogflow receives in a user event// when the user taps the suggested action. This data will be also forwarded to// webhook to allow performing custom business logic.PostbackDatastring `json:"postbackData,omitempty"`// ShareLocation: Suggested client side action: Share user locationShareLocation *GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation `json:"shareLocation,omitempty"`// Text: Text to display alongside the action.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Dial") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Dial") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction: Rich BusinessMessaging (RBM) suggested client-side action that the user can choose fromthe card.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial struct {// PhoneNumber: Required. The phone number to fill in the default dialer app.// This field should be in E.164 (https://en.wikipedia.org/wiki/E.164) format.// An example of a correctly formatted phone number: +15556767888.PhoneNumberstring `json:"phoneNumber,omitempty"`// ForceSendFields is a list of field names (e.g. "PhoneNumber") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PhoneNumber") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial: Opens the user's default dialer app with the specified phone numberbut does not dial automatically.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri struct {// Uri: Required. The uri to open on the user deviceUristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Uri") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Uri") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri: Opens the user's default web browser app to the specified uri Ifthe user has an app installed that is registered as the default handler forthe URL, then this app will be opened instead, and its icon will be used inthe suggested action UI.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation struct {}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation: Opens the device's location chooser so the user can pick alocation to send back to the agent.

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply struct {// PostbackData: Opaque payload that the Dialogflow receives in a user event// when the user taps the suggested reply. This data will be also forwarded to// webhook to allow performing custom business logic.PostbackDatastring `json:"postbackData,omitempty"`// Text: Suggested reply text.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "PostbackData") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PostbackData") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply: Rich BusinessMessaging (RBM) suggested reply that the user can click instead of typing intheir own response.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion

type GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion struct {// Action: Predefined client side actions that user can chooseAction *GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction `json:"action,omitempty"`// Reply: Predefined replies for user to select instead of typingReply *GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply `json:"reply,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion: Rich BusinessMessaging (RBM) suggestion. Suggestions allow user to easily select/click apredefined response or perform an action (like opening a web uri).

func (GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageRbmText

type GoogleCloudDialogflowV2beta1IntentMessageRbmText struct {// RbmSuggestion: Optional. One or more suggestions to show to the user.RbmSuggestion []*GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion `json:"rbmSuggestion,omitempty"`// Text: Required. Text sent and displayed to the user.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "RbmSuggestion") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "RbmSuggestion") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageRbmText: Rich Business Messaging(RBM) text response with suggestions.

func (GoogleCloudDialogflowV2beta1IntentMessageRbmText)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo

type GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo struct {// Key: Required. A unique key that will be sent back to the agent if this// response is given.Keystring `json:"key,omitempty"`// Synonyms: Optional. A list of synonyms that can also be used to trigger this// item in dialog.Synonyms []string `json:"synonyms,omitempty"`// ForceSendFields is a list of field names (e.g. "Key") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Key") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo: Additional infoabout the select item for when it is triggered in a dialog.

func (GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageSimpleResponse

type GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse struct {// DisplayText: Optional. The text to display.DisplayTextstring `json:"displayText,omitempty"`// Ssml: One of text_to_speech or ssml must be provided. Structured spoken// response to the user in the SSML format. Mutually exclusive with// text_to_speech.Ssmlstring `json:"ssml,omitempty"`// TextToSpeech: One of text_to_speech or ssml must be provided. The plain text// of the speech output. Mutually exclusive with ssml.TextToSpeechstring `json:"textToSpeech,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse: The simple responsemessage containing speech or text.

func (GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageSimpleResponses

type GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses struct {// SimpleResponses: Required. The list of simple responses.SimpleResponses []*GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse `json:"simpleResponses,omitempty"`// ForceSendFields is a list of field names (e.g. "SimpleResponses") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SimpleResponses") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses: The collection ofsimple response candidates. This message in`QueryResult.fulfillment_messages` and`WebhookResponse.fulfillment_messages` should contain only one`SimpleResponse`.

func (GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageSuggestion

type GoogleCloudDialogflowV2beta1IntentMessageSuggestion struct {// Title: Required. The text shown the in the suggestion chip.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Title") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Title") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageSuggestion: The suggestion chipmessage that the user can tap to quickly post a reply to the conversation.

func (GoogleCloudDialogflowV2beta1IntentMessageSuggestion)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageSuggestions

type GoogleCloudDialogflowV2beta1IntentMessageSuggestions struct {// Suggestions: Required. The list of suggested replies.Suggestions []*GoogleCloudDialogflowV2beta1IntentMessageSuggestion `json:"suggestions,omitempty"`// ForceSendFields is a list of field names (e.g. "Suggestions") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Suggestions") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageSuggestions: The collection ofsuggestions.

func (GoogleCloudDialogflowV2beta1IntentMessageSuggestions)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTableCard

type GoogleCloudDialogflowV2beta1IntentMessageTableCard struct {// Buttons: Optional. List of buttons for the card.Buttons []*GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton `json:"buttons,omitempty"`// ColumnProperties: Optional. Display properties for the columns in this// table.ColumnProperties []*GoogleCloudDialogflowV2beta1IntentMessageColumnProperties `json:"columnProperties,omitempty"`// Image: Optional. Image which should be displayed on the card.Image *GoogleCloudDialogflowV2beta1IntentMessageImage `json:"image,omitempty"`// Rows: Optional. Rows in this table of data.Rows []*GoogleCloudDialogflowV2beta1IntentMessageTableCardRow `json:"rows,omitempty"`// Subtitle: Optional. Subtitle to the title.Subtitlestring `json:"subtitle,omitempty"`// Title: Required. Title of the card.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Buttons") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Buttons") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTableCard: Table card for Actionson Google.

func (GoogleCloudDialogflowV2beta1IntentMessageTableCard)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTableCardCell

type GoogleCloudDialogflowV2beta1IntentMessageTableCardCell struct {// Text: Required. Text in this cell.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTableCardCell: Cell ofTableCardRow.

func (GoogleCloudDialogflowV2beta1IntentMessageTableCardCell)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTableCardRow

type GoogleCloudDialogflowV2beta1IntentMessageTableCardRow struct {// Cells: Optional. List of cells that make up this row.Cells []*GoogleCloudDialogflowV2beta1IntentMessageTableCardCell `json:"cells,omitempty"`// DividerAfter: Optional. Whether to add a visual divider after this row.DividerAfterbool `json:"dividerAfter,omitempty"`// ForceSendFields is a list of field names (e.g. "Cells") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Cells") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTableCardRow: Row of TableCard.

func (GoogleCloudDialogflowV2beta1IntentMessageTableCardRow)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio

type GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio struct {// AudioUri: Required. URI to a Google Cloud Storage object containing the// audio to play, e.g., "gs://bucket/object". The object must contain a single// channel (mono) of linear PCM audio (2 bytes / sample) at 8kHz. This object// must be readable by the `service-@gcp-sa-dialogflow.iam.gserviceaccount.com`// service account where is the number of the Telephony Gateway project// (usually the same as the Dialogflow agent project). If the Google Cloud// Storage bucket is in the Telephony Gateway project, this permission is added// by default when enabling the Dialogflow V2 API. For audio from other// sources, consider using the `TelephonySynthesizeSpeech` message with SSML.AudioUristring `json:"audioUri,omitempty"`// ForceSendFields is a list of field names (e.g. "AudioUri") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AudioUri") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio: Plays audiofrom a file in Telephony Gateway.

func (GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech

type GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech struct {// Ssml: The SSML to be synthesized. For more information, see SSML// (https://developers.google.com/actions/reference/ssml).Ssmlstring `json:"ssml,omitempty"`// Text: The raw text to be synthesized.Textstring `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Ssml") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Ssml") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech:Synthesizes speech and plays back the synthesized audio to the caller inTelephony Gateway. Telephony Gateway takes the synthesizer settings from`DetectIntentResponse.output_audio_config` which can either be set atrequest-level or can come from the agent-level synthesizer config.

func (GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall

type GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall struct {// PhoneNumber: Required. The phone number to transfer the call to in E.164// format (https://en.wikipedia.org/wiki/E.164). We currently only allow// transferring to US numbers (+1xxxyyyzzzz).PhoneNumberstring `json:"phoneNumber,omitempty"`// ForceSendFields is a list of field names (e.g. "PhoneNumber") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PhoneNumber") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall: Transfersthe call in Telephony Gateway.

func (GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentMessageText

type GoogleCloudDialogflowV2beta1IntentMessageText struct {// Text: Optional. The collection of the agent's responses.Text []string `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentMessageText: The text response message.

func (GoogleCloudDialogflowV2beta1IntentMessageText)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentParameter

type GoogleCloudDialogflowV2beta1IntentParameter struct {// DefaultValue: Optional. The default value to use when the `value` yields an// empty result. Default values can be extracted from contexts by using the// following syntax: `#context_name.parameter_name`.DefaultValuestring `json:"defaultValue,omitempty"`// DisplayName: Required. The name of the parameter.DisplayNamestring `json:"displayName,omitempty"`// EntityTypeDisplayName: Optional. The name of the entity type, prefixed with// `@`, that describes values of the parameter. If the parameter is required,// this must be provided.EntityTypeDisplayNamestring `json:"entityTypeDisplayName,omitempty"`// IsList: Optional. Indicates whether the parameter represents a list of// values.IsListbool `json:"isList,omitempty"`// Mandatory: Optional. Indicates whether the parameter is required. That is,// whether the intent cannot be completed without collecting the parameter// value.Mandatorybool `json:"mandatory,omitempty"`// Name: The unique identifier of this parameter.Namestring `json:"name,omitempty"`// Prompts: Optional. The collection of prompts that the agent can present to// the user in order to collect a value for the parameter.Prompts []string `json:"prompts,omitempty"`// Value: Optional. The definition of the parameter value. It can be: - a// constant string, - a parameter value defined as `$parameter_name`, - an// original parameter value defined as `$parameter_name.original`, - a// parameter value from some context defined as `#context_name.parameter_name`.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultValue") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DefaultValue") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentParameter: Represents intent parameters.

func (GoogleCloudDialogflowV2beta1IntentParameter)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentSuggestionadded inv0.125.0

type GoogleCloudDialogflowV2beta1IntentSuggestion struct {// Description: Human readable description for better understanding an intent// like its scope, content, result etc. Maximum character limit: 140// characters.Descriptionstring `json:"description,omitempty"`// DisplayName: The display name of the intent.DisplayNamestring `json:"displayName,omitempty"`// IntentV2: The unique identifier of this intent. Format:// `projects//locations//agent/intents/`.IntentV2string `json:"intentV2,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentSuggestion: Represents an intentsuggestion.

func (GoogleCloudDialogflowV2beta1IntentSuggestion)MarshalJSONadded inv0.125.0

typeGoogleCloudDialogflowV2beta1IntentTrainingPhrase

type GoogleCloudDialogflowV2beta1IntentTrainingPhrase struct {// Name: Output only. The unique identifier of this training phrase.Namestring `json:"name,omitempty"`// Parts: Required. The ordered list of training phrase parts. The parts are// concatenated in order to form the training phrase. Note: The API does not// automatically annotate training phrases like the Dialogflow Console does.// Note: Do not forget to include whitespace at part boundaries, so the// training phrase is well formatted when the parts are concatenated. If the// training phrase does not need to be annotated with parameters, you just need// a single part with only the Part.text field set. If you want to annotate the// training phrase, you must create multiple parts, where the fields of each// part are populated in one of two ways: - `Part.text` is set to a part of the// phrase that has no parameters. - `Part.text` is set to a part of the phrase// that you want to annotate, and the `entity_type`, `alias`, and// `user_defined` fields are all set.Parts []*GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart `json:"parts,omitempty"`// TimesAddedCount: Optional. Indicates how many times this example was added// to the intent. Each time a developer adds an existing sample by editing an// intent or training, this counter is increased.TimesAddedCountint64 `json:"timesAddedCount,omitempty"`// Type: Required. The type of the training phrase.//// Possible values://   "TYPE_UNSPECIFIED" - Not specified. This value should never be used.//   "EXAMPLE" - Examples do not contain @-prefixed entity type names, but// example parts can be annotated with entity types.//   "TEMPLATE" - Templates are not annotated with entity types, but they can// contain @-prefixed entity type names as substrings. Note: Template mode has// been deprecated. Example mode is the only supported way to create new// training phrases. If you have existing training phrases in template mode,// they will be removed during training and it can cause a drop in agent// performance.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Name") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentTrainingPhrase: Represents an example thatthe agent is trained on.

func (GoogleCloudDialogflowV2beta1IntentTrainingPhrase)MarshalJSON

typeGoogleCloudDialogflowV2beta1IntentTrainingPhrasePart

type GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart struct {// Alias: Optional. The parameter name for the value extracted from the// annotated part of the example. This field is required for annotated parts of// the training phrase.Aliasstring `json:"alias,omitempty"`// EntityType: Optional. The entity type name prefixed with `@`. This field is// required for annotated parts of the training phrase.EntityTypestring `json:"entityType,omitempty"`// Text: Required. The text for this part.Textstring `json:"text,omitempty"`// UserDefined: Optional. Indicates whether the text was manually annotated.// This field is set to true when the Dialogflow Console is used to manually// annotate the part. When creating an annotated part with the API, you must// set this to true.UserDefinedbool `json:"userDefined,omitempty"`// ForceSendFields is a list of field names (e.g. "Alias") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Alias") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart: Represents a part of atraining phrase.

func (GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart)MarshalJSON

typeGoogleCloudDialogflowV2beta1KnowledgeAnswers

type GoogleCloudDialogflowV2beta1KnowledgeAnswers struct {// Answers: A list of answers from Knowledge Connector.Answers []*GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer `json:"answers,omitempty"`// ForceSendFields is a list of field names (e.g. "Answers") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Answers") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAnswers: Represents the result ofquerying a Knowledge base.

func (GoogleCloudDialogflowV2beta1KnowledgeAnswers)MarshalJSON

typeGoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer

type GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer struct {// Answer: The piece of text from the `source` knowledge base document that// answers this conversational query.Answerstring `json:"answer,omitempty"`// FaqQuestion: The corresponding FAQ question if the answer was extracted from// a FAQ Document, empty otherwise.FaqQuestionstring `json:"faqQuestion,omitempty"`// MatchConfidence: The system's confidence score that this Knowledge answer is// a good match for this conversational query. The range is from 0.0// (completely uncertain) to 1.0 (completely certain). Note: The confidence// score is likely to vary somewhat (possibly even for identical requests), as// the underlying model is under constant improvement. It may be deprecated in// the future. We recommend using `match_confidence_level` which should be// generally more stable.MatchConfidencefloat64 `json:"matchConfidence,omitempty"`// MatchConfidenceLevel: The system's confidence level that this knowledge// answer is a good match for this conversational query. NOTE: The confidence// level for a given “ pair may change without notice, as it depends on models// that are constantly being improved. However, it will change less frequently// than the confidence score below, and should be preferred for referencing the// quality of an answer.//// Possible values://   "MATCH_CONFIDENCE_LEVEL_UNSPECIFIED" - Not specified.//   "LOW" - Indicates that the confidence is low.//   "MEDIUM" - Indicates our confidence is medium.//   "HIGH" - Indicates our confidence is high.MatchConfidenceLevelstring `json:"matchConfidenceLevel,omitempty"`// Source: Indicates which Knowledge Document this answer was extracted from.// Format: `projects//knowledgeBases//documents/`.Sourcestring `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "Answer") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Answer") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer: An answer from KnowledgeConnector.

func (GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer)MarshalJSON

func (*GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer)UnmarshalJSON

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnsweradded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer struct {// AnswerRecord: The name of the answer record. Format:// `projects//locations//answer Records/`.AnswerRecordstring `json:"answerRecord,omitempty"`// SuggestedQuery: The query suggested based on the context. Suggestion is made// only if it is different from the previous suggestion.SuggestedQuery *GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery `json:"suggestedQuery,omitempty"`// SuggestedQueryAnswer: The answer generated for the suggested query. Whether// or not an answer is generated depends on how confident we are about the// generated query.SuggestedQueryAnswer *GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer `json:"suggestedQueryAnswer,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer: Represents a KnowledgeAssist answer.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnsweradded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer struct {// AnswerText: The piece of text from the `source` that answers this suggested// query.AnswerTextstring `json:"answerText,omitempty"`// FaqSource: Populated if the prediction came from FAQ.FaqSource *GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource `json:"faqSource,omitempty"`// GenerativeSource: Populated if the prediction was Generative.GenerativeSource *GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource `json:"generativeSource,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer: Representsan answer from Knowledge. Currently supports FAQ and Generative answers.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSourceadded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource struct {// Question: The corresponding FAQ question.Questionstring `json:"question,omitempty"`// ForceSendFields is a list of field names (e.g. "Question") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Question") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource:Details about source of FAQ answer.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceadded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource struct {// Snippets: All snippets used for this Generative Prediction, with their// source URI and data.Snippets []*GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet `json:"snippets,omitempty"`// ForceSendFields is a list of field names (e.g. "Snippets") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Snippets") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource: Details about source of Generative answer.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippetadded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet struct {// Metadata: Metadata of the document.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Text: Text taken from that URI.Textstring `json:"text,omitempty"`// Title: Title of the document.Titlestring `json:"title,omitempty"`// Uri: URI the data is sourced from.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet: Snippet Source for a Generative Prediction.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQueryadded inv0.185.0

type GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery struct {// QueryText: Suggested query text.QueryTextstring `json:"queryText,omitempty"`// ForceSendFields is a list of field names (e.g. "QueryText") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QueryText") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery: Representsa suggested query.

func (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1KnowledgeOperationMetadata

type GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata struct {// DoneTime: The time when the operation finished.DoneTimestring `json:"doneTime,omitempty"`// ExportOperationMetadata: Metadata for the Export Data Operation such as the// destination of export.ExportOperationMetadata *GoogleCloudDialogflowV2beta1ExportOperationMetadata `json:"exportOperationMetadata,omitempty"`// KnowledgeBase: The name of the knowledge base interacted with during the// operation.KnowledgeBasestring `json:"knowledgeBase,omitempty"`// State: Required. Output only. The current state of this operation.//// Possible values://   "STATE_UNSPECIFIED" - State unspecified.//   "PENDING" - The operation has been created.//   "RUNNING" - The operation is currently running.//   "DONE" - The operation is done, either cancelled or completed.Statestring `json:"state,omitempty"`// ForceSendFields is a list of field names (e.g. "DoneTime") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DoneTime") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata: Metadata ingoogle::longrunning::Operation for Knowledge operations.

func (GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata)MarshalJSON

typeGoogleCloudDialogflowV2beta1Messageadded inv0.42.0

type GoogleCloudDialogflowV2beta1Message struct {// Content: Required. The message content.Contentstring `json:"content,omitempty"`// CreateTime: Output only. The time when the message was created in Contact// Center AI.CreateTimestring `json:"createTime,omitempty"`// LanguageCode: Optional. The message language. This should be a BCP-47// (https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example:// "en-US".LanguageCodestring `json:"languageCode,omitempty"`// MessageAnnotation: Output only. The annotation for the message.MessageAnnotation *GoogleCloudDialogflowV2beta1MessageAnnotation `json:"messageAnnotation,omitempty"`// Name: Optional. The unique identifier of the message. Format:// `projects//locations//conversations//messages/`.Namestring `json:"name,omitempty"`// Participant: Output only. The participant that sends this message.Participantstring `json:"participant,omitempty"`// ParticipantRole: Output only. The role of the participant.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// ResponseMessages: Optional. Automated agent responses.ResponseMessages []*GoogleCloudDialogflowV2beta1ResponseMessage `json:"responseMessages,omitempty"`// SendTime: Optional. The time when the message was sent. For voice messages,// this is the time when an utterance started.SendTimestring `json:"sendTime,omitempty"`// SentimentAnalysis: Output only. The sentiment analysis result for the// message.SentimentAnalysis *GoogleCloudDialogflowV2beta1SentimentAnalysisResult `json:"sentimentAnalysis,omitempty"`// ForceSendFields is a list of field names (e.g. "Content") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Content") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1Message: Represents a message posted into aconversation.

func (GoogleCloudDialogflowV2beta1Message)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1MessageAnnotationadded inv0.42.0

type GoogleCloudDialogflowV2beta1MessageAnnotation struct {// ContainEntities: Required. Indicates whether the text message contains// entities.ContainEntitiesbool `json:"containEntities,omitempty"`// Parts: Optional. The collection of annotated message parts ordered by their// position in the message. You can recover the annotated message by// concatenating [AnnotatedMessagePart.text].Parts []*GoogleCloudDialogflowV2beta1AnnotatedMessagePart `json:"parts,omitempty"`// ForceSendFields is a list of field names (e.g. "ContainEntities") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContainEntities") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1MessageAnnotation: Represents the result ofannotation for the message.

func (GoogleCloudDialogflowV2beta1MessageAnnotation)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

type GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest struct {// Payload: Optional. This field is set to the value of the// `QueryParameters.payload` field passed in the request. Some integrations// that query a Dialogflow agent may provide additional information in the// payload. In particular, for the Dialogflow Phone Gateway integration, this// field has the form: { "telephony": { "caller_id": "+18558363987" } } Note:// The caller ID field (`caller_id`) will be redacted for Trial Edition agents// and populated with the caller ID in E.164 format// (https://en.wikipedia.org/wiki/E.164) for Essentials Edition agents.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// Source: The source of this request, e.g., `google`, `facebook`, `slack`. It// is set by Dialogflow-owned servers.Sourcestring `json:"source,omitempty"`// Version: Optional. The version of the protocol used for this request. This// field is AoG-specific.Versionstring `json:"version,omitempty"`// ForceSendFields is a list of field names (e.g. "Payload") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Payload") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest: Represents thecontents of the original request that was passed to the`[Streaming]DetectIntent` call.

func (GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest)MarshalJSON

typeGoogleCloudDialogflowV2beta1QueryResult

type GoogleCloudDialogflowV2beta1QueryResult struct {// Action: The action name from the matched intent.Actionstring `json:"action,omitempty"`// AllRequiredParamsPresent: This field is set to: - `false` if the matched// intent has required parameters and not all of the required parameter values// have been collected. - `true` if all required parameter values have been// collected, or if the matched intent doesn't contain any required parameters.AllRequiredParamsPresentbool `json:"allRequiredParamsPresent,omitempty"`// CancelsSlotFilling: Indicates whether the conversational query triggers a// cancellation for slot filling. For more information, see the cancel slot// filling documentation// (https://cloud.google.com/dialogflow/es/docs/intents-actions-parameters#cancel).CancelsSlotFillingbool `json:"cancelsSlotFilling,omitempty"`// DiagnosticInfo: Free-form diagnostic information for the associated detect// intent request. The fields of this data can change without notice, so you// should not write code that depends on its structure. The data may contain: -// webhook call latency - webhook errorsDiagnosticInfogoogleapi.RawMessage `json:"diagnosticInfo,omitempty"`// FulfillmentMessages: The collection of rich messages to present to the user.FulfillmentMessages []*GoogleCloudDialogflowV2beta1IntentMessage `json:"fulfillmentMessages,omitempty"`// FulfillmentText: The text to be pronounced to the user or shown on the// screen. Note: This is a legacy field, `fulfillment_messages` should be// preferred.FulfillmentTextstring `json:"fulfillmentText,omitempty"`// Intent: The intent that matched the conversational query. Some, not all// fields are filled in this message, including but not limited to: `name`,// `display_name`, `end_interaction` and `is_fallback`.Intent *GoogleCloudDialogflowV2beta1Intent `json:"intent,omitempty"`// IntentDetectionConfidence: The intent detection confidence. Values range// from 0.0 (completely uncertain) to 1.0 (completely certain). This value is// for informational purpose only and is only used to help match the best// intent within the classification threshold. This value may change for the// same end-user expression at any time due to a model retraining or change in// implementation. If there are `multiple knowledge_answers` messages, this// value is set to the greatest `knowledgeAnswers.match_confidence` value in// the list.IntentDetectionConfidencefloat64 `json:"intentDetectionConfidence,omitempty"`// KnowledgeAnswers: The result from Knowledge Connector (if any), ordered by// decreasing `KnowledgeAnswers.match_confidence`.KnowledgeAnswers *GoogleCloudDialogflowV2beta1KnowledgeAnswers `json:"knowledgeAnswers,omitempty"`// LanguageCode: The language that was triggered during intent detection. See// Language Support// (https://cloud.google.com/dialogflow/docs/reference/language) for a list of// the currently supported language codes.LanguageCodestring `json:"languageCode,omitempty"`// OutputContexts: The collection of output contexts. If applicable,// `output_contexts.parameters` contains entries with name `.original`// containing the original parameter values before the query.OutputContexts []*GoogleCloudDialogflowV2beta1Context `json:"outputContexts,omitempty"`// Parameters: The collection of extracted parameters. Depending on your// protocol or client library language, this is a map, associative array,// symbol table, dictionary, or JSON object composed of a collection of// (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter// name * MapValue type: If parameter's entity type is a composite entity then// use map, otherwise, depending on the parameter value type, it could be one// of string, number, boolean, null, list or map. * MapValue value: If// parameter's entity type is a composite entity then use map from composite// entity property names to property values, otherwise, use parameter value.Parametersgoogleapi.RawMessage `json:"parameters,omitempty"`// QueryText: The original conversational query text: - If natural language// text was provided as input, `query_text` contains a copy of the input. - If// natural language speech audio was provided as input, `query_text` contains// the speech recognition result. If speech recognizer produced multiple// alternatives, a particular one is picked. - If automatic spell correction is// enabled, `query_text` will contain the corrected user input.QueryTextstring `json:"queryText,omitempty"`// SentimentAnalysisResult: The sentiment analysis result, which depends on the// `sentiment_analysis_request_config` specified in the request.SentimentAnalysisResult *GoogleCloudDialogflowV2beta1SentimentAnalysisResult `json:"sentimentAnalysisResult,omitempty"`// SpeechRecognitionConfidence: The Speech recognition confidence between 0.0// and 1.0. A higher number indicates an estimated greater likelihood that the// recognized words are correct. The default of 0.0 is a sentinel value// indicating that confidence was not set. This field is not guaranteed to be// accurate or set. In particular this field isn't set for// StreamingDetectIntent since the streaming endpoint has separate confidence// estimates per portion of the audio in StreamingRecognitionResult.SpeechRecognitionConfidencefloat64 `json:"speechRecognitionConfidence,omitempty"`// WebhookPayload: If the query was fulfilled by a webhook call, this field is// set to the value of the `payload` field returned in the webhook response.WebhookPayloadgoogleapi.RawMessage `json:"webhookPayload,omitempty"`// WebhookSource: If the query was fulfilled by a webhook call, this field is// set to the value of the `source` field returned in the webhook response.WebhookSourcestring `json:"webhookSource,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1QueryResult: Represents the result ofconversational query or event processing.

func (GoogleCloudDialogflowV2beta1QueryResult)MarshalJSON

func (*GoogleCloudDialogflowV2beta1QueryResult)UnmarshalJSON

func (s *GoogleCloudDialogflowV2beta1QueryResult) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2beta1ResponseMessageadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessage struct {// EndInteraction: A signal that indicates the interaction with the Dialogflow// agent has ended.EndInteraction *GoogleCloudDialogflowV2beta1ResponseMessageEndInteraction `json:"endInteraction,omitempty"`// LiveAgentHandoff: Hands off conversation to a live agent.LiveAgentHandoff *GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff `json:"liveAgentHandoff,omitempty"`// MixedAudio: An audio response message composed of both the synthesized// Dialogflow agent responses and the audios hosted in places known to the// client.MixedAudio *GoogleCloudDialogflowV2beta1ResponseMessageMixedAudio `json:"mixedAudio,omitempty"`// Payload: Returns a response containing a custom, platform-specific payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// TelephonyTransferCall: A signal that the client should transfer the phone// call connected to this agent to a third-party endpoint.TelephonyTransferCall *GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall `json:"telephonyTransferCall,omitempty"`// Text: Returns a text response.Text *GoogleCloudDialogflowV2beta1ResponseMessageText `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "EndInteraction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndInteraction") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessage: Response messages from anautomated agent.

func (GoogleCloudDialogflowV2beta1ResponseMessage)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1ResponseMessageEndInteractionadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageEndInteraction struct {}

GoogleCloudDialogflowV2beta1ResponseMessageEndInteraction: Indicates thatinteraction with the Dialogflow agent has ended.

typeGoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoffadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff struct {// Metadata: Custom metadata for your handoff procedure. Dialogflow doesn't// impose any structure on this.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// ForceSendFields is a list of field names (e.g. "Metadata") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Metadata") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff: Indicates thatthe conversation should be handed off to a human agent. Dialogflow only usesthis to determine which conversations were handed off to a human agent formeasurement purposes. What else to do with this signal is up to you and yourhandoff procedures. You may set this, for example: * In the entryfulfillment of a Dialogflow CX Page if entering the page indicates somethingwent extremely wrong in the conversation. * In a webhook response when youdetermine that the customer issue can only be handled by a human.

func (GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1ResponseMessageMixedAudioadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageMixedAudio struct {// Segments: Segments this audio response is composed of.Segments []*GoogleCloudDialogflowV2beta1ResponseMessageMixedAudioSegment `json:"segments,omitempty"`// ForceSendFields is a list of field names (e.g. "Segments") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Segments") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessageMixedAudio: Represents an audiomessage that is composed of both segments synthesized from the Dialogflowagent prompts and ones hosted externally at the specified URIs.

func (GoogleCloudDialogflowV2beta1ResponseMessageMixedAudio)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1ResponseMessageMixedAudioSegmentadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageMixedAudioSegment struct {// AllowPlaybackInterruption: Whether the playback of this segment can be// interrupted by the end user's speech and the client should then start the// next Dialogflow request.AllowPlaybackInterruptionbool `json:"allowPlaybackInterruption,omitempty"`// Audio: Raw audio synthesized from the Dialogflow agent's response using the// output config specified in the request.Audiostring `json:"audio,omitempty"`// Uri: Client-specific URI that points to an audio clip accessible to the// client.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowPlaybackInterruption")// to unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AllowPlaybackInterruption") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessageMixedAudioSegment: Represents onesegment of audio.

func (GoogleCloudDialogflowV2beta1ResponseMessageMixedAudioSegment)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCalladded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall struct {// PhoneNumber: Transfer the call to a phone number in E.164 format// (https://en.wikipedia.org/wiki/E.164).PhoneNumberstring `json:"phoneNumber,omitempty"`// SipUri: Transfer the call to a SIP endpoint.SipUristring `json:"sipUri,omitempty"`// ForceSendFields is a list of field names (e.g. "PhoneNumber") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "PhoneNumber") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall: Representsthe signal that telles the client to transfer the phone call connected tothe agent to a third-party endpoint.

func (GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1ResponseMessageTextadded inv0.189.0

type GoogleCloudDialogflowV2beta1ResponseMessageText struct {// Text: A collection of text response variants. If multiple variants are// defined, only one text response variant is returned at runtime.Text []string `json:"text,omitempty"`// ForceSendFields is a list of field names (e.g. "Text") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Text") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ResponseMessageText: The text response message.

func (GoogleCloudDialogflowV2beta1ResponseMessageText)MarshalJSONadded inv0.189.0

typeGoogleCloudDialogflowV2beta1Sentiment

type GoogleCloudDialogflowV2beta1Sentiment struct {// Magnitude: A non-negative number in the [0, +inf) range, which represents// the absolute magnitude of sentiment, regardless of score (positive or// negative).Magnitudefloat64 `json:"magnitude,omitempty"`// Score: Sentiment score between -1.0 (negative sentiment) and 1.0 (positive// sentiment).Scorefloat64 `json:"score,omitempty"`// ForceSendFields is a list of field names (e.g. "Magnitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Magnitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1Sentiment: The sentiment, such aspositive/negative feeling or association, for a unit of analysis, such asthe query text. See:https://cloud.google.com/natural-language/docs/basics#interpreting_sentiment_analysis_valuesfor how to interpret the result.

func (GoogleCloudDialogflowV2beta1Sentiment)MarshalJSON

func (*GoogleCloudDialogflowV2beta1Sentiment)UnmarshalJSON

func (s *GoogleCloudDialogflowV2beta1Sentiment) UnmarshalJSON(data []byte)error

typeGoogleCloudDialogflowV2beta1SentimentAnalysisResult

type GoogleCloudDialogflowV2beta1SentimentAnalysisResult struct {// QueryTextSentiment: The sentiment analysis result for `query_text`.QueryTextSentiment *GoogleCloudDialogflowV2beta1Sentiment `json:"queryTextSentiment,omitempty"`// ForceSendFields is a list of field names (e.g. "QueryTextSentiment") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "QueryTextSentiment") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SentimentAnalysisResult: The result of sentimentanalysis. Sentiment analysis inspects user input and identifies theprevailing subjective opinion, especially to determine a user's attitude aspositive, negative, or neutral. For Participants.DetectIntent, it needs tobe configured in DetectIntentRequest.query_params. ForParticipants.StreamingDetectIntent, it needs to be configured inStreamingDetectIntentRequest.query_params. And forParticipants.AnalyzeContent and Participants.StreamingAnalyzeContent, itneeds to be configured in ConversationProfile.human_agent_assistant_config

func (GoogleCloudDialogflowV2beta1SentimentAnalysisResult)MarshalJSON

typeGoogleCloudDialogflowV2beta1SessionEntityType

type GoogleCloudDialogflowV2beta1SessionEntityType struct {// Entities: Required. The collection of entities associated with this session// entity type.Entities []*GoogleCloudDialogflowV2beta1EntityTypeEntity `json:"entities,omitempty"`// EntityOverrideMode: Required. Indicates whether the additional data should// override or supplement the custom entity type definition.//// Possible values://   "ENTITY_OVERRIDE_MODE_UNSPECIFIED" - Not specified. This value should be// never used.//   "ENTITY_OVERRIDE_MODE_OVERRIDE" - The collection of session entities// overrides the collection of entities in the corresponding custom entity// type.//   "ENTITY_OVERRIDE_MODE_SUPPLEMENT" - The collection of session entities// extends the collection of entities in the corresponding custom entity type.// Note: Even in this override mode calls to `ListSessionEntityTypes`,// `GetSessionEntityType`, `CreateSessionEntityType` and// `UpdateSessionEntityType` only return the additional entities added in this// session entity type. If you want to get the supplemented list, please call// EntityTypes.GetEntityType on the custom entity type and merge.EntityOverrideModestring `json:"entityOverrideMode,omitempty"`// Name: Required. The unique identifier of this session entity type. Supported// formats: - `projects//agent/sessions//entityTypes/` -// `projects//locations//agent/sessions//entityTypes/` -// `projects//agent/environments//users//sessions//entityTypes/` -// `projects//locations//agent/environments/ /users//sessions//entityTypes/` If// `Location ID` is not specified we assume default 'us' location. If// `Environment ID` is not specified, we assume default 'draft' environment. If// `User ID` is not specified, we assume default '-' user. “ must be the// display name of an existing entity type in the same agent that will be// overridden or supplemented.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Entities") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Entities") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SessionEntityType: A session represents aconversation between a Dialogflow agent and an end-user. You can createspecial entities, called session entities, during a session. Sessionentities can extend or replace custom entity types and only exist during thesession that they were created for. All session data, including sessionentities, is stored by Dialogflow for 20 minutes. For more information, seethe session entity guide(https://cloud.google.com/dialogflow/docs/entities-session).

func (GoogleCloudDialogflowV2beta1SessionEntityType)MarshalJSON

typeGoogleCloudDialogflowV2beta1SetSuggestionFeatureConfigOperationMetadataadded inv0.71.0

type GoogleCloudDialogflowV2beta1SetSuggestionFeatureConfigOperationMetadata struct {// ConversationProfile: The resource name of the conversation profile. Format:// `projects//locations//conversationProfiles/`ConversationProfilestring `json:"conversationProfile,omitempty"`// CreateTime: Timestamp whe the request was created. The time is measured on// server side.CreateTimestring `json:"createTime,omitempty"`// ParticipantRole: Required. The participant role to add or update the// suggestion feature config. Only HUMAN_AGENT or END_USER can be used.//// Possible values://   "ROLE_UNSPECIFIED" - Participant role not set.//   "HUMAN_AGENT" - Participant is a human agent.//   "AUTOMATED_AGENT" - Participant is an automated agent, such as a// Dialogflow agent.//   "END_USER" - Participant is an end user that has called or chatted with// Dialogflow services.ParticipantRolestring `json:"participantRole,omitempty"`// SuggestionFeatureType: Required. The type of the suggestion feature to add// or update.//// Possible values://   "TYPE_UNSPECIFIED" - Unspecified feature type.//   "ARTICLE_SUGGESTION" - Run article suggestion model for chat.//   "FAQ" - Run FAQ model.//   "SMART_REPLY" - Run smart reply model for chat.//   "DIALOGFLOW_ASSIST" - Run Dialogflow assist model for chat, which will// return automated agent response as suggestion.//   "CONVERSATION_SUMMARIZATION" - Run conversation summarization model for// chat.//   "KNOWLEDGE_SEARCH" - Run knowledge search with text input from agent or// text generated query.//   "KNOWLEDGE_ASSIST" - Run knowledge assist with automatic query generation.SuggestionFeatureTypestring `json:"suggestionFeatureType,omitempty"`// ForceSendFields is a list of field names (e.g. "ConversationProfile") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ConversationProfile") to include// in API requests with the JSON null value. By default, fields with empty// values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SetSuggestionFeatureConfigOperationMetadata:Metadata for a ConversationProfile.SetSuggestionFeatureConfig operation.

func (GoogleCloudDialogflowV2beta1SetSuggestionFeatureConfigOperationMetadata)MarshalJSONadded inv0.71.0

typeGoogleCloudDialogflowV2beta1SmartReplyAnsweradded inv0.42.0

type GoogleCloudDialogflowV2beta1SmartReplyAnswer struct {// AnswerRecord: The name of answer record, in the format of// "projects//locations//answerRecords/"AnswerRecordstring `json:"answerRecord,omitempty"`// Confidence: Smart reply confidence. The system's confidence score that this// reply is a good match for this conversation, as a value from 0.0 (completely// uncertain) to 1.0 (completely certain).Confidencefloat64 `json:"confidence,omitempty"`// Reply: The content of the reply.Replystring `json:"reply,omitempty"`// ForceSendFields is a list of field names (e.g. "AnswerRecord") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AnswerRecord") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SmartReplyAnswer: Represents a smart replyanswer.

func (GoogleCloudDialogflowV2beta1SmartReplyAnswer)MarshalJSONadded inv0.42.0

func (*GoogleCloudDialogflowV2beta1SmartReplyAnswer)UnmarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1SpeechWordInfoadded inv0.215.0

type GoogleCloudDialogflowV2beta1SpeechWordInfo struct {// Confidence: The Speech confidence between 0.0 and 1.0 for this word. A// higher number indicates an estimated greater likelihood that the recognized// word is correct. The default of 0.0 is a sentinel value indicating that// confidence was not set. This field is not guaranteed to be fully stable over// time for the same audio input. Users should also not rely on it to always be// provided.Confidencefloat64 `json:"confidence,omitempty"`// EndOffset: Time offset relative to the beginning of the audio that// corresponds to the end of the spoken word. This is an experimental feature// and the accuracy of the time offset can vary.EndOffsetstring `json:"endOffset,omitempty"`// StartOffset: Time offset relative to the beginning of the audio that// corresponds to the start of the spoken word. This is an experimental feature// and the accuracy of the time offset can vary.StartOffsetstring `json:"startOffset,omitempty"`// Word: The word this info is for.Wordstring `json:"word,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SpeechWordInfo: Information for a wordrecognized by the speech recognizer.

func (GoogleCloudDialogflowV2beta1SpeechWordInfo)MarshalJSONadded inv0.215.0

func (*GoogleCloudDialogflowV2beta1SpeechWordInfo)UnmarshalJSONadded inv0.215.0

typeGoogleCloudDialogflowV2beta1StreamingRecognitionResultadded inv0.215.0

type GoogleCloudDialogflowV2beta1StreamingRecognitionResult struct {// Confidence: The Speech confidence between 0.0 and 1.0 for the current// portion of audio. A higher number indicates an estimated greater likelihood// that the recognized words are correct. The default of 0.0 is a sentinel// value indicating that confidence was not set. This field is typically only// provided if `is_final` is true and you should not rely on it being accurate// or even set.Confidencefloat64 `json:"confidence,omitempty"`// DtmfDigits: DTMF digits. Populated if and only if `message_type` =// `DTMF_DIGITS`.DtmfDigits *GoogleCloudDialogflowV2beta1TelephonyDtmfEvents `json:"dtmfDigits,omitempty"`// IsFinal: If `false`, the `StreamingRecognitionResult` represents an interim// result that may change. If `true`, the recognizer will not return any// further hypotheses about this piece of the audio. May only be populated for// `message_type` = `TRANSCRIPT`.IsFinalbool `json:"isFinal,omitempty"`// LanguageCode: Detected language code for the transcript.LanguageCodestring `json:"languageCode,omitempty"`// MessageType: Type of the result message.//// Possible values://   "MESSAGE_TYPE_UNSPECIFIED" - Not specified. Should never be used.//   "TRANSCRIPT" - Message contains a (possibly partial) transcript.//   "END_OF_SINGLE_UTTERANCE" - This event indicates that the server has// detected the end of the user's speech utterance and expects no additional// speech. Therefore, the server will not process additional audio (although it// may subsequently return additional results). The client should stop sending// additional audio data, half-close the gRPC connection, and wait for any// additional results until the server closes the gRPC connection. This message// is only sent if `single_utterance` was set to `true`, and is not used// otherwise.//   "DTMF_DIGITS" - Message contains DTMF digits.//   "PARTIAL_DTMF_DIGITS" - Message contains DTMF digits. Before a message// with DTMF_DIGITS is sent, a message with PARTIAL_DTMF_DIGITS may be sent// with DTMF digits collected up to the time of sending, which represents an// intermediate result.MessageTypestring `json:"messageType,omitempty"`// SpeechEndOffset: Time offset of the end of this Speech recognition result// relative to the beginning of the audio. Only populated for `message_type` =// `TRANSCRIPT`.SpeechEndOffsetstring `json:"speechEndOffset,omitempty"`// SpeechWordInfo: Word-specific information for the words recognized by Speech// in transcript. Populated if and only if `message_type` = `TRANSCRIPT` and// [InputAudioConfig.enable_word_info] is set.SpeechWordInfo []*GoogleCloudDialogflowV2beta1SpeechWordInfo `json:"speechWordInfo,omitempty"`// Stability: An estimate of the likelihood that the speech recognizer will not// change its guess about this interim recognition result: * If the value is// unspecified or 0.0, Dialogflow didn't compute the stability. In particular,// Dialogflow will only provide stability for `TRANSCRIPT` results with// `is_final = false`. * Otherwise, the value is in (0.0, 1.0] where 0.0 means// completely unstable and 1.0 means completely stable.Stabilityfloat64 `json:"stability,omitempty"`// Transcript: Transcript text representing the words that the user spoke.// Populated if and only if `message_type` = `TRANSCRIPT`.Transcriptstring `json:"transcript,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1StreamingRecognitionResult: Contains a speechrecognition result corresponding to a portion of the audio that is currentlybeing processed or an indication that this is the end of the singlerequested utterance. While end-user audio is being processed, Dialogflowsends a series of results. Each result may contain a `transcript` value. Atranscript represents a portion of the utterance. While the recognizer isprocessing audio, transcript values may be interim values or finalizedvalues. Once a transcript is finalized, the `is_final` value is set to trueand processing continues for the next transcript. If`StreamingDetectIntentRequest.query_input.audio_config.single_utterance` wastrue, and the recognizer has completed processing audio, the `message_type`value is set to `END_OF_SINGLE_UTTERANCE and the following (last) resultcontains the last finalized transcript. The complete end-user utterance isdetermined by concatenating the finalized transcript values received for theseries of results. In the following example, single utterance is enabled. Inthe case where single utterance is not enabled, result 7 would not occur.``` Num | transcript | message_type | is_final --- | -----------------------| ----------------------- | -------- 1 | "tube" | TRANSCRIPT | false 2 | "tobe a" | TRANSCRIPT | false 3 | "to be" | TRANSCRIPT | false 4 | "to be ornot to be" | TRANSCRIPT | true 5 | "that's" | TRANSCRIPT | false 6 | "thatis | TRANSCRIPT | false 7 | unset | END_OF_SINGLE_UTTERANCE | unset 8 | "that is the question" | TRANSCRIPT | true ``` Concatenating the finalizedtranscripts with `is_final` set to true, the complete utterance becomes "tobe or not to be that is the question".

func (GoogleCloudDialogflowV2beta1StreamingRecognitionResult)MarshalJSONadded inv0.215.0

func (*GoogleCloudDialogflowV2beta1StreamingRecognitionResult)UnmarshalJSONadded inv0.215.0

typeGoogleCloudDialogflowV2beta1SuggestArticlesResponseadded inv0.42.0

type GoogleCloudDialogflowV2beta1SuggestArticlesResponse struct {// ArticleAnswers: Output only. Articles ordered by score in descending order.ArticleAnswers []*GoogleCloudDialogflowV2beta1ArticleAnswer `json:"articleAnswers,omitempty"`// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestArticlesResponse.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ArticleAnswers") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ArticleAnswers") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestArticlesResponse: The response messagefor Participants.SuggestArticles.

func (GoogleCloudDialogflowV2beta1SuggestArticlesResponse)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponseadded inv0.125.0

type GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestDialogflowAssistsRequest.context_size field in the request if there// aren't that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// DialogflowAssistAnswers: Output only. Multiple reply options provided by// Dialogflow assist service. The order is based on the rank of the model// prediction.DialogflowAssistAnswers []*GoogleCloudDialogflowV2beta1DialogflowAssistAnswer `json:"dialogflowAssistAnswers,omitempty"`// LatestMessage: The name of the latest conversation message used to suggest// answer. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse: The responsemessage for Participants.SuggestDialogflowAssists.

func (GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse)MarshalJSONadded inv0.125.0

typeGoogleCloudDialogflowV2beta1SuggestFaqAnswersResponseadded inv0.42.0

type GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestFaqAnswersRequest.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// FaqAnswers: Output only. Answers extracted from FAQ documents.FaqAnswers []*GoogleCloudDialogflowV2beta1FaqAnswer `json:"faqAnswers,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse: The request messagefor Participants.SuggestFaqAnswers.

func (GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponseadded inv0.185.0

type GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestKnowledgeAssistRequest.context_size field in the request if there are// fewer messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// KnowledgeAssistAnswer: Output only. Knowledge Assist suggestion.KnowledgeAssistAnswer *GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer `json:"knowledgeAssistAnswer,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse: The responsemessage for Participants.SuggestKnowledgeAssist.

func (GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse)MarshalJSONadded inv0.185.0

typeGoogleCloudDialogflowV2beta1SuggestSmartRepliesResponseadded inv0.42.0

type GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse struct {// ContextSize: Number of messages prior to and including latest_message to// compile the suggestion. It may be smaller than the// SuggestSmartRepliesRequest.context_size field in the request if there aren't// that many messages in the conversation.ContextSizeint64 `json:"contextSize,omitempty"`// LatestMessage: The name of the latest conversation message used to compile// suggestion for. Format: `projects//locations//conversations//messages/`.LatestMessagestring `json:"latestMessage,omitempty"`// SmartReplyAnswers: Output only. Multiple reply options provided by smart// reply service. The order is based on the rank of the model prediction. The// maximum number of the returned replies is set in SmartReplyConfig.SmartReplyAnswers []*GoogleCloudDialogflowV2beta1SmartReplyAnswer `json:"smartReplyAnswers,omitempty"`// ForceSendFields is a list of field names (e.g. "ContextSize") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ContextSize") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse: The responsemessage for Participants.SuggestSmartReplies.

func (GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1SuggestionResultadded inv0.42.0

type GoogleCloudDialogflowV2beta1SuggestionResult struct {// Error: Error status if the request failed.Error *GoogleRpcStatus `json:"error,omitempty"`// GenerateSuggestionsResponse: Suggestions generated using generators// triggered by customer or agent messages.GenerateSuggestionsResponse *GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse `json:"generateSuggestionsResponse,omitempty"`// SuggestArticlesResponse: SuggestArticlesResponse if request is for// ARTICLE_SUGGESTION.SuggestArticlesResponse *GoogleCloudDialogflowV2beta1SuggestArticlesResponse `json:"suggestArticlesResponse,omitempty"`// SuggestDialogflowAssistsResponse: SuggestDialogflowAssistsResponse if// request is for DIALOGFLOW_ASSIST.SuggestDialogflowAssistsResponse *GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse `json:"suggestDialogflowAssistsResponse,omitempty"`// SuggestEntityExtractionResponse: SuggestDialogflowAssistsResponse if request// is for ENTITY_EXTRACTION.SuggestEntityExtractionResponse *GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse `json:"suggestEntityExtractionResponse,omitempty"`// SuggestFaqAnswersResponse: SuggestFaqAnswersResponse if request is for// FAQ_ANSWER.SuggestFaqAnswersResponse *GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse `json:"suggestFaqAnswersResponse,omitempty"`// SuggestKnowledgeAssistResponse: SuggestKnowledgeAssistResponse if request is// for KNOWLEDGE_ASSIST.SuggestKnowledgeAssistResponse *GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse `json:"suggestKnowledgeAssistResponse,omitempty"`// SuggestSmartRepliesResponse: SuggestSmartRepliesResponse if request is for// SMART_REPLY.SuggestSmartRepliesResponse *GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse `json:"suggestSmartRepliesResponse,omitempty"`// ForceSendFields is a list of field names (e.g. "Error") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Error") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SuggestionResult: One response of different typeof suggestion response which is used in the response ofParticipants.AnalyzeContent and Participants.AnalyzeContent, as well asHumanAgentAssistantEvent.

func (GoogleCloudDialogflowV2beta1SuggestionResult)MarshalJSONadded inv0.42.0

typeGoogleCloudDialogflowV2beta1SummarySuggestionadded inv0.226.0

type GoogleCloudDialogflowV2beta1SummarySuggestion struct {// SummarySections: Required. All the parts of generated summary.SummarySections []*GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection `json:"summarySections,omitempty"`// ForceSendFields is a list of field names (e.g. "SummarySections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "SummarySections") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SummarySuggestion: Suggested summary of theconversation.

func (GoogleCloudDialogflowV2beta1SummarySuggestion)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1SummarySuggestionSummarySectionadded inv0.226.0

type GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection struct {// Section: Required. Name of the section.Sectionstring `json:"section,omitempty"`// Summary: Required. Summary text for the section.Summarystring `json:"summary,omitempty"`// ForceSendFields is a list of field names (e.g. "Section") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Section") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection: A component ofthe generated summary.

func (GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection)MarshalJSONadded inv0.226.0

typeGoogleCloudDialogflowV2beta1TelephonyDtmfEventsadded inv0.215.0

type GoogleCloudDialogflowV2beta1TelephonyDtmfEvents struct {// DtmfEvents: A sequence of TelephonyDtmf digits.//// Possible values://   "TELEPHONY_DTMF_UNSPECIFIED" - Not specified. This value may be used to// indicate an absent digit.//   "DTMF_ONE" - Number: '1'.//   "DTMF_TWO" - Number: '2'.//   "DTMF_THREE" - Number: '3'.//   "DTMF_FOUR" - Number: '4'.//   "DTMF_FIVE" - Number: '5'.//   "DTMF_SIX" - Number: '6'.//   "DTMF_SEVEN" - Number: '7'.//   "DTMF_EIGHT" - Number: '8'.//   "DTMF_NINE" - Number: '9'.//   "DTMF_ZERO" - Number: '0'.//   "DTMF_A" - Letter: 'A'.//   "DTMF_B" - Letter: 'B'.//   "DTMF_C" - Letter: 'C'.//   "DTMF_D" - Letter: 'D'.//   "DTMF_STAR" - Asterisk/star: '*'.//   "DTMF_POUND" - Pound/diamond/hash/square/gate/octothorpe: '#'.DtmfEvents []string `json:"dtmfEvents,omitempty"`// ForceSendFields is a list of field names (e.g. "DtmfEvents") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DtmfEvents") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1TelephonyDtmfEvents: A wrapper of repeatedTelephonyDtmf digits.

func (GoogleCloudDialogflowV2beta1TelephonyDtmfEvents)MarshalJSONadded inv0.215.0

typeGoogleCloudDialogflowV2beta1ToolCalladded inv0.229.0

type GoogleCloudDialogflowV2beta1ToolCall struct {// Action: Optional. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// AnswerRecord: Optional. The answer record associated with this tool call.AnswerRecordstring `json:"answerRecord,omitempty"`// CreateTime: Output only. Create time of the tool call.CreateTimestring `json:"createTime,omitempty"`// InputParameters: Optional. The action's input parameters.InputParametersgoogleapi.RawMessage `json:"inputParameters,omitempty"`// State: Output only. State of the tool call//// Possible values://   "STATE_UNSPECIFIED" - Default value.//   "TRIGGERED" - The tool call has been triggered.//   "NEEDS_CONFIRMATION" - The tool call requires confirmation from a human.Statestring `json:"state,omitempty"`// Tool: Optional. The tool associated with this call. Format:// `projects//locations//tools/`.Toolstring `json:"tool,omitempty"`// ToolDisplayDetails: Optional. A human readable description of the tool.ToolDisplayDetailsstring `json:"toolDisplayDetails,omitempty"`// ToolDisplayName: Optional. A human readable short name of the tool, to be// shown on the UI.ToolDisplayNamestring `json:"toolDisplayName,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ToolCall: Represents a call of a specific tool'saction with the specified inputs.

func (GoogleCloudDialogflowV2beta1ToolCall)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2beta1ToolCallResultadded inv0.229.0

type GoogleCloudDialogflowV2beta1ToolCallResult struct {// Action: Optional. The name of the tool's action associated with this call.Actionstring `json:"action,omitempty"`// AnswerRecord: Optional. The answer record associated with this tool call// result.AnswerRecordstring `json:"answerRecord,omitempty"`// Content: Only populated if the response content is utf-8 encoded.Contentstring `json:"content,omitempty"`// CreateTime: Output only. Create time of the tool call result.CreateTimestring `json:"createTime,omitempty"`// Error: The tool call's error.Error *GoogleCloudDialogflowV2beta1ToolCallResultError `json:"error,omitempty"`// RawContent: Only populated if the response content is not utf-8 encoded. (by// definition byte fields are base64 encoded).RawContentstring `json:"rawContent,omitempty"`// Tool: Optional. The tool associated with this call. Format:// `projects//locations//tools/`.Toolstring `json:"tool,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Action") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ToolCallResult: The result of calling a tool'saction.

func (GoogleCloudDialogflowV2beta1ToolCallResult)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2beta1ToolCallResultErroradded inv0.229.0

type GoogleCloudDialogflowV2beta1ToolCallResultError struct {// Message: Optional. The error message of the function.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Message") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Message") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1ToolCallResultError: An error produced by thetool call.

func (GoogleCloudDialogflowV2beta1ToolCallResultError)MarshalJSONadded inv0.229.0

typeGoogleCloudDialogflowV2beta1WebhookRequest

type GoogleCloudDialogflowV2beta1WebhookRequest struct {// AlternativeQueryResults: Alternative query results from KnowledgeService.AlternativeQueryResults []*GoogleCloudDialogflowV2beta1QueryResult `json:"alternativeQueryResults,omitempty"`// OriginalDetectIntentRequest: Optional. The contents of the original request// that was passed to `[Streaming]DetectIntent` call.OriginalDetectIntentRequest *GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest `json:"originalDetectIntentRequest,omitempty"`// QueryResult: The result of the conversational query or event processing.// Contains the same value as `[Streaming]DetectIntentResponse.query_result`.QueryResult *GoogleCloudDialogflowV2beta1QueryResult `json:"queryResult,omitempty"`// ResponseId: The unique identifier of the response. Contains the same value// as `[Streaming]DetectIntentResponse.response_id`.ResponseIdstring `json:"responseId,omitempty"`// Session: The unique identifier of detectIntent request session. Can be used// to identify end-user inside webhook implementation. Supported formats: -// `projects//agent/sessions/, - `projects//locations//agent/sessions/`, -// `projects//agent/environments//users//sessions/`, -// `projects//locations//agent/environments//users//sessions/`,Sessionstring `json:"session,omitempty"`// ForceSendFields is a list of field names (e.g. "AlternativeQueryResults") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AlternativeQueryResults") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1WebhookRequest: The request message for awebhook call.

func (GoogleCloudDialogflowV2beta1WebhookRequest)MarshalJSON

typeGoogleCloudDialogflowV2beta1WebhookResponse

type GoogleCloudDialogflowV2beta1WebhookResponse struct {// EndInteraction: Optional. Indicates that this intent ends an interaction.// Some integrations (e.g., Actions on Google or Dialogflow phone gateway) use// this information to close interaction with an end user. Default is false.EndInteractionbool `json:"endInteraction,omitempty"`// FollowupEventInput: Optional. Invokes the supplied events. When this field// is set, Dialogflow ignores the `fulfillment_text`, `fulfillment_messages`,// and `payload` fields.FollowupEventInput *GoogleCloudDialogflowV2beta1EventInput `json:"followupEventInput,omitempty"`// FulfillmentMessages: Optional. The rich response messages intended for the// end-user. When provided, Dialogflow uses this field to populate// QueryResult.fulfillment_messages sent to the integration or API caller.FulfillmentMessages []*GoogleCloudDialogflowV2beta1IntentMessage `json:"fulfillmentMessages,omitempty"`// FulfillmentText: Optional. The text response message intended for the// end-user. It is recommended to use `fulfillment_messages.text.text[0]`// instead. When provided, Dialogflow uses this field to populate// QueryResult.fulfillment_text sent to the integration or API caller.FulfillmentTextstring `json:"fulfillmentText,omitempty"`// LiveAgentHandoff: Indicates that a live agent should be brought in to handle// the interaction with the user. In most cases, when you set this flag to// true, you would also want to set end_interaction to true as well. Default is// false.LiveAgentHandoffbool `json:"liveAgentHandoff,omitempty"`// OutputContexts: Optional. The collection of output contexts that will// overwrite currently active contexts for the session and reset their// lifespans. When provided, Dialogflow uses this field to populate// QueryResult.output_contexts sent to the integration or API caller.OutputContexts []*GoogleCloudDialogflowV2beta1Context `json:"outputContexts,omitempty"`// Payload: Optional. This field can be used to pass custom data from your// webhook to the integration or API caller. Arbitrary JSON objects are// supported. When provided, Dialogflow uses this field to populate// QueryResult.webhook_payload sent to the integration or API caller. This// field is also used by the Google Assistant integration// (https://cloud.google.com/dialogflow/docs/integrations/aog) for rich// response messages. See the format definition at Google Assistant Dialogflow// webhook format// (https://developers.google.com/assistant/actions/build/json/dialogflow-webhook-json)Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// SessionEntityTypes: Optional. Additional session entity types to replace or// extend developer entity types with. The entity synonyms apply to all// languages and persist for the session. Setting this data from a webhook// overwrites the session entity types that have been set using `detectIntent`,// `streamingDetectIntent` or SessionEntityType management methods.SessionEntityTypes []*GoogleCloudDialogflowV2beta1SessionEntityType `json:"sessionEntityTypes,omitempty"`// Source: Optional. A custom field used to identify the webhook source.// Arbitrary strings are supported. When provided, Dialogflow uses this field// to populate QueryResult.webhook_source sent to the integration or API// caller.Sourcestring `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "EndInteraction") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "EndInteraction") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV2beta1WebhookResponse: The response message for awebhook call. This response is validated by the Dialogflow server. Ifvalidation fails, an error will be returned in theQueryResult.diagnostic_info field. Setting JSON fields to an empty valuewith the wrong type is a common error. To avoid this error: - Use "" forempty strings - Use `{}` or `null` for empty objects - Use `[]` or `null`for empty arrays For more information, see the Protocol Buffers LanguageGuide (https://developers.google.com/protocol-buffers/docs/proto3#json).

func (GoogleCloudDialogflowV2beta1WebhookResponse)MarshalJSON

typeGoogleCloudDialogflowV3alpha1ConversationSignalsadded inv0.107.0

type GoogleCloudDialogflowV3alpha1ConversationSignals struct {// TurnSignals: Required. Turn signals for the current turn.TurnSignals *GoogleCloudDialogflowV3alpha1TurnSignals `json:"turnSignals,omitempty"`// ForceSendFields is a list of field names (e.g. "TurnSignals") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "TurnSignals") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV3alpha1ConversationSignals: This message is used tohold all the Conversation Signals data, which will be converted to JSON andexported to BigQuery.

func (GoogleCloudDialogflowV3alpha1ConversationSignals)MarshalJSONadded inv0.107.0

typeGoogleCloudDialogflowV3alpha1TurnSignalsadded inv0.107.0

type GoogleCloudDialogflowV3alpha1TurnSignals struct {// AgentEscalated: Whether agent responded with LiveAgentHandoff fulfillment.AgentEscalatedbool `json:"agentEscalated,omitempty"`// DtmfUsed: Whether user was using DTMF input.DtmfUsedbool `json:"dtmfUsed,omitempty"`// FailureReasons: Failure reasons of the turn.//// Possible values://   "FAILURE_REASON_UNSPECIFIED" - Failure reason is not assigned.//   "FAILED_INTENT" - Whether NLU failed to recognize user intent.//   "FAILED_WEBHOOK" - Whether webhook failed during the turn.FailureReasons []string `json:"failureReasons,omitempty"`// NoMatch: Whether NLU predicted NO_MATCH.NoMatchbool `json:"noMatch,omitempty"`// NoUserInput: Whether user provided no input.NoUserInputbool `json:"noUserInput,omitempty"`// ReachedEndPage: Whether turn resulted in End Session page.ReachedEndPagebool `json:"reachedEndPage,omitempty"`// SentimentMagnitude: Sentiment magnitude of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentMagnitudefloat64 `json:"sentimentMagnitude,omitempty"`// SentimentScore: Sentiment score of the user utterance if sentiment// (https://cloud.google.com/dialogflow/cx/docs/concept/sentiment) was enabled.SentimentScorefloat64 `json:"sentimentScore,omitempty"`// TriggeredAbandonmentEvent: Whether agent has triggered the event// corresponding to user abandoning the conversation.TriggeredAbandonmentEventbool `json:"triggeredAbandonmentEvent,omitempty"`// UserEscalated: Whether user was specifically asking for a live agent.UserEscalatedbool `json:"userEscalated,omitempty"`// WebhookStatuses: Human-readable statuses of the webhooks triggered during// this turn.WebhookStatuses []string `json:"webhookStatuses,omitempty"`// ForceSendFields is a list of field names (e.g. "AgentEscalated") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AgentEscalated") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudDialogflowV3alpha1TurnSignals: Collection of all signals thatwere extracted for a single turn of the conversation.

func (GoogleCloudDialogflowV3alpha1TurnSignals)MarshalJSONadded inv0.107.0

func (*GoogleCloudDialogflowV3alpha1TurnSignals)UnmarshalJSONadded inv0.123.0

func (s *GoogleCloudDialogflowV3alpha1TurnSignals) UnmarshalJSON(data []byte)error

typeGoogleCloudLocationListLocationsResponseadded inv0.53.0

type GoogleCloudLocationListLocationsResponse struct {// Locations: A list of locations that matches the specified filter in the// request.Locations []*GoogleCloudLocationLocation `json:"locations,omitempty"`// NextPageToken: The standard List next-page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Locations") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Locations") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudLocationListLocationsResponse: The response message forLocations.ListLocations.

func (GoogleCloudLocationListLocationsResponse)MarshalJSONadded inv0.53.0

typeGoogleCloudLocationLocationadded inv0.53.0

type GoogleCloudLocationLocation struct {// DisplayName: The friendly name for this location, typically a nearby city// name. For example, "Tokyo".DisplayNamestring `json:"displayName,omitempty"`// Labels: Cross-service attributes for the location. For example// {"cloud.googleapis.com/region": "us-east1"}Labels map[string]string `json:"labels,omitempty"`// LocationId: The canonical id for this location. For example: "us-east1".LocationIdstring `json:"locationId,omitempty"`// Metadata: Service-specific metadata. For example the available capacity at// the given location.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: Resource name for the location, which may vary between// implementations. For example:// "projects/example-project/locations/us-east1"Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "DisplayName") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DisplayName") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleCloudLocationLocation: A resource that represents a Google Cloudlocation.

func (GoogleCloudLocationLocation)MarshalJSONadded inv0.53.0

func (sGoogleCloudLocationLocation) MarshalJSON() ([]byte,error)

typeGoogleLongrunningListOperationsResponse

type GoogleLongrunningListOperationsResponse struct {// NextPageToken: The standard List next-page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Operations: A list of operations that matches the specified filter in the// request.Operations []*GoogleLongrunningOperation `json:"operations,omitempty"`// Unreachable: Unordered list. Unreachable resources. Populated when the// request sets `ListOperationsRequest.return_partial_success` and reads across// collections e.g. when attempting to list all resources across all supported// locations.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "NextPageToken") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "NextPageToken") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleLongrunningListOperationsResponse: The response message forOperations.ListOperations.

func (GoogleLongrunningListOperationsResponse)MarshalJSON

typeGoogleLongrunningOperation

type GoogleLongrunningOperation struct {// Done: If the value is `false`, it means the operation is still in progress.// If `true`, the operation is completed, and either `error` or `response` is// available.Donebool `json:"done,omitempty"`// Error: The error result of the operation in case of failure or cancellation.Error *GoogleRpcStatus `json:"error,omitempty"`// Metadata: Service-specific metadata associated with the operation. It// typically contains progress information and common metadata such as create// time. Some services might not provide such metadata. Any method that returns// a long-running operation should document the metadata type, if any.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: The server-assigned name, which is only unique within the same service// that originally returns it. If you use the default HTTP mapping, the `name`// should be a resource name ending with `operations/{unique_id}`.Namestring `json:"name,omitempty"`// Response: The normal, successful response of the operation. If the original// method returns no data on success, such as `Delete`, the response is// `google.protobuf.Empty`. If the original method is standard// `Get`/`Create`/`Update`, the response should be the resource. For other// methods, the response should have the type `XxxResponse`, where `Xxx` is the// original method name. For example, if the original method name is// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.Responsegoogleapi.RawMessage `json:"response,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Done") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Done") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleLongrunningOperation: This resource represents a long-runningoperation that is the result of a network API call.

func (GoogleLongrunningOperation)MarshalJSON

func (sGoogleLongrunningOperation) MarshalJSON() ([]byte,error)

typeGoogleProtobufEmpty

type GoogleProtobufEmpty struct {// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`}

GoogleProtobufEmpty: A generic empty message that you can re-use to avoiddefining duplicated empty messages in your APIs. A typical example is to useit as the request or the response type of an API method. For instance:service Foo { rpc Bar(google.protobuf.Empty) returns(google.protobuf.Empty); }

typeGoogleRpcStatus

type GoogleRpcStatus struct {// Code: The status code, which should be an enum value of google.rpc.Code.Codeint64 `json:"code,omitempty"`// Details: A list of messages that carry the error details. There is a common// set of message types for APIs to use.Details []googleapi.RawMessage `json:"details,omitempty"`// Message: A developer-facing error message, which should be in English. Any// user-facing error message should be localized and sent in the// google.rpc.Status.details field, or localized by the client.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Code") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleRpcStatus: The `Status` type defines a logical error model that issuitable for different programming environments, including REST APIs and RPCAPIs. It is used by gRPC (https://github.com/grpc). Each `Status` messagecontains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in theAPI Design Guide (https://cloud.google.com/apis/design/errors).

func (GoogleRpcStatus)MarshalJSON

func (sGoogleRpcStatus) MarshalJSON() ([]byte,error)

typeGoogleTypeLatLng

type GoogleTypeLatLng struct {// Latitude: The latitude in degrees. It must be in the range [-90.0, +90.0].Latitudefloat64 `json:"latitude,omitempty"`// Longitude: The longitude in degrees. It must be in the range [-180.0,// +180.0].Longitudefloat64 `json:"longitude,omitempty"`// ForceSendFields is a list of field names (e.g. "Latitude") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Latitude") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GoogleTypeLatLng: An object that represents a latitude/longitude pair. Thisis expressed as a pair of doubles to represent degrees latitude and degreeslongitude. Unless specified otherwise, this object must conform to the WGS84standard. Values must be within normalized ranges.

func (GoogleTypeLatLng)MarshalJSON

func (sGoogleTypeLatLng) MarshalJSON() ([]byte,error)

func (*GoogleTypeLatLng)UnmarshalJSON

func (s *GoogleTypeLatLng) UnmarshalJSON(data []byte)error

typeProjectsLocationsAgentsChangelogsGetCalladded inv0.60.0

type ProjectsLocationsAgentsChangelogsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsChangelogsGetCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsChangelogsGetCall)Doadded inv0.60.0

Do executes the "dialogflow.projects.locations.agents.changelogs.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Changelog.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsChangelogsGetCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsChangelogsGetCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsChangelogsGetCall)IfNoneMatchadded inv0.60.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsChangelogsListCalladded inv0.60.0

type ProjectsLocationsAgentsChangelogsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsChangelogsListCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsChangelogsListCall)Doadded inv0.60.0

Do executes the "dialogflow.projects.locations.agents.changelogs.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListChangelogsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsChangelogsListCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsChangelogsListCall)Filteradded inv0.60.0

Filter sets the optional parameter "filter": The filter string. Supportsfilter by user_email, resource, type and create_time. Some examples: 1. Byuser email: user_email = "someone@google.com" 2. By resource name: resource= "projects/123/locations/global/agents/456/flows/789" 3. By resourcedisplay name: display_name = "my agent" 4. By action: action = "Create" 5.By type: type = "flows" 6. By create time. Currently predicates on`create_time` and `create_time_epoch_seconds` are supported:create_time_epoch_seconds > 1551790877 AND create_time <=2017-01-15T01:30:15.01Z 7. Combination of above filters: resource ="projects/123/locations/global/agents/456/flows/789" AND user_email ="someone@google.com" AND create_time <= 2017-01-15T01:30:15.01Z

func (*ProjectsLocationsAgentsChangelogsListCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsChangelogsListCall)IfNoneMatchadded inv0.60.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsChangelogsListCall)PageSizeadded inv0.60.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsChangelogsListCall)PageTokenadded inv0.60.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsChangelogsListCall)Pagesadded inv0.60.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsChangelogsServiceadded inv0.60.0

type ProjectsLocationsAgentsChangelogsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsChangelogsServiceadded inv0.60.0

func NewProjectsLocationsAgentsChangelogsService(s *Service) *ProjectsLocationsAgentsChangelogsService

func (*ProjectsLocationsAgentsChangelogsService)Getadded inv0.60.0

Get: Retrieves the specified Changelog.

  • name: The name of the changelog to get. Format:`projects//locations//agents//changelogs/`.

func (*ProjectsLocationsAgentsChangelogsService)Listadded inv0.60.0

List: Returns the list of Changelogs.

  • parent: The agent containing the changelogs. Format:`projects//locations//agents/`.

typeProjectsLocationsAgentsConversationsDeleteCalladded inv0.177.0

type ProjectsLocationsAgentsConversationsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsConversationsDeleteCall)Contextadded inv0.177.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsConversationsDeleteCall)Doadded inv0.177.0

Do executes the "dialogflow.projects.locations.agents.conversations.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsConversationsDeleteCall)Fieldsadded inv0.177.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsConversationsDeleteCall)Headeradded inv0.177.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsConversationsGetCalladded inv0.177.0

type ProjectsLocationsAgentsConversationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsConversationsGetCall)Contextadded inv0.177.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsConversationsGetCall)Doadded inv0.177.0

Do executes the "dialogflow.projects.locations.agents.conversations.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Conversation.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsConversationsGetCall)Fieldsadded inv0.177.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsConversationsGetCall)Headeradded inv0.177.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsConversationsGetCall)IfNoneMatchadded inv0.177.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsConversationsListCalladded inv0.177.0

type ProjectsLocationsAgentsConversationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsConversationsListCall)Contextadded inv0.177.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsConversationsListCall)Doadded inv0.177.0

Do executes the "dialogflow.projects.locations.agents.conversations.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListConversationsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsConversationsListCall)Fieldsadded inv0.177.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsConversationsListCall)Filteradded inv0.177.0

Filter sets the optional parameter "filter": The filter string. Supportsfilter by create_time, metrics.has_end_interaction,metrics.has_live_agent_handoff, intents.display_name, pages.display_name andflows.display_name. Timestamps expect an RFC-3339 formatted string (e.g.2012-04-21T11:30:00-04:00). UTC offsets are supported. Some examples: 1. Bycreate time: create_time > "2022-04-21T11:30:00-04:00" 2. By intent displayname: intents.display_name : "billing" 3. By end interaction signal:metrics.has_end_interaction = true

func (*ProjectsLocationsAgentsConversationsListCall)Headeradded inv0.177.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsConversationsListCall)IfNoneMatchadded inv0.177.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsConversationsListCall)PageSizeadded inv0.177.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsConversationsListCall)PageTokenadded inv0.177.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsConversationsListCall)Pagesadded inv0.177.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsConversationsServiceadded inv0.177.0

type ProjectsLocationsAgentsConversationsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsConversationsServiceadded inv0.177.0

func NewProjectsLocationsAgentsConversationsService(s *Service) *ProjectsLocationsAgentsConversationsService

func (*ProjectsLocationsAgentsConversationsService)Deleteadded inv0.177.0

Delete: Deletes the specified conversation.

  • name: The name of the conversation. Format:`projects//locations//agents//conversations/`.

func (*ProjectsLocationsAgentsConversationsService)Getadded inv0.177.0

Get: Retrieves the specified conversation.

  • name: The name of the conversation. Format:`projects//locations//agents//conversations/`.

func (*ProjectsLocationsAgentsConversationsService)Listadded inv0.177.0

List: Returns the list of all conversations.

  • parent: The agent to list all conversations for. Format:`projects//locations//agents/`.

typeProjectsLocationsAgentsCreateCall

type ProjectsLocationsAgentsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Agent.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsDeleteCall

type ProjectsLocationsAgentsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEntityTypesCreateCall

type ProjectsLocationsAgentsEntityTypesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.entityTypes.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1EntityType.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEntityTypesCreateCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `entity_type`: * `EntityType.entities.value` *`EntityType.entities.synonyms` * `EntityType.excluded_phrases.value` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsEntityTypesDeleteCall

type ProjectsLocationsAgentsEntityTypesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.entityTypes.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsEntityTypesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesDeleteCall)Force

Force sets the optional parameter "force": This field has no effect forentity type not being used. For entity types that are used by intents orpages: * If `force` is set to false, an error will be returned with messageindicating the referencing resources. * If `force` is set to true,Dialogflow will remove the entity type, as well as any references to theentity type (i.e. Page parameter of the entity type will be changed to'@sys.any' and intent parameter of the entity type will be removed).

func (*ProjectsLocationsAgentsEntityTypesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEntityTypesExportCalladded inv0.164.0

type ProjectsLocationsAgentsEntityTypesExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesExportCall)Contextadded inv0.164.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesExportCall)Doadded inv0.164.0

Do executes the "dialogflow.projects.locations.agents.entityTypes.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesExportCall)Fieldsadded inv0.164.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesExportCall)Headeradded inv0.164.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEntityTypesGetCall

type ProjectsLocationsAgentsEntityTypesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesGetCall)Do

Do executes the "dialogflow.projects.locations.agents.entityTypes.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1EntityType.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEntityTypesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEntityTypesGetCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language toretrieve the entity type for. The following fields are language dependent: *`EntityType.entities.value` * `EntityType.entities.synonyms` *`EntityType.excluded_phrases.value` If not specified, the agent's defaultlanguage is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsEntityTypesImportCalladded inv0.164.0

type ProjectsLocationsAgentsEntityTypesImportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesImportCall)Contextadded inv0.164.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesImportCall)Doadded inv0.164.0

Do executes the "dialogflow.projects.locations.agents.entityTypes.import" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesImportCall)Fieldsadded inv0.164.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesImportCall)Headeradded inv0.164.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEntityTypesListCall

type ProjectsLocationsAgentsEntityTypesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesListCall)Do

Do executes the "dialogflow.projects.locations.agents.entityTypes.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListEntityTypesResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEntityTypesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEntityTypesListCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language tolist entity types for. The following fields are language dependent: *`EntityType.entities.value` * `EntityType.entities.synonyms` *`EntityType.excluded_phrases.value` If not specified, the agent's defaultlanguage is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsEntityTypesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsEntityTypesListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEntityTypesListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEntityTypesPatchCall

type ProjectsLocationsAgentsEntityTypesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEntityTypesPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.entityTypes.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1EntityType.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEntityTypesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEntityTypesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEntityTypesPatchCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `entity_type`: * `EntityType.entities.value` *`EntityType.entities.synonyms` * `EntityType.excluded_phrases.value` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsEntityTypesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated.

typeProjectsLocationsAgentsEntityTypesService

type ProjectsLocationsAgentsEntityTypesService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEntityTypesService)Create

Create: Creates an entity type in the specified agent.

  • parent: The agent to create a entity type for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEntityTypesService)Delete

Delete: Deletes the specified entity type. Note: You should always train aflow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The name of the entity type to delete. Format:`projects//locations//agents//entityTypes/`.

func (*ProjectsLocationsAgentsEntityTypesService)Exportadded inv0.164.0

Export: Exports the selected entity types.

  • parent: The name of the parent agent to export entity types. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEntityTypesService)Get

Get: Retrieves the specified entity type.

  • name: The name of the entity type. Format:`projects//locations//agents//entityTypes/`.

func (*ProjectsLocationsAgentsEntityTypesService)Importadded inv0.164.0

Import: Imports the specified entitytypes into the agent.

  • parent: The agent to import the entity types into. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEntityTypesService)List

List: Returns the list of all entity types in the specified agent.

  • parent: The agent to list all entity types for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEntityTypesService)Patch

Patch: Updates the specified entity type. Note: You should always train aflow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the entity type. Required forEntityTypes.UpdateEntityType. Format:`projects//locations//agents//entityTypes/`.

typeProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCalladded inv0.48.0

type ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)Contextadded inv0.48.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)Doadded inv0.48.0

Do executes the "dialogflow.projects.locations.agents.environments.continuousTestResults.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)Fieldsadded inv0.48.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)Headeradded inv0.48.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)IfNoneMatchadded inv0.48.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)PageSizeadded inv0.48.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)PageTokenadded inv0.48.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsListCall)Pagesadded inv0.48.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsContinuousTestResultsServiceadded inv0.48.0

type ProjectsLocationsAgentsEnvironmentsContinuousTestResultsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsEnvironmentsContinuousTestResultsServiceadded inv0.48.0

func NewProjectsLocationsAgentsEnvironmentsContinuousTestResultsService(s *Service) *ProjectsLocationsAgentsEnvironmentsContinuousTestResultsService

func (*ProjectsLocationsAgentsEnvironmentsContinuousTestResultsService)Listadded inv0.48.0

List: Fetches a list of continuous test results for a given environment.

  • parent: The environment to list results for. Format:`projects//locations//agents//environments/`.

typeProjectsLocationsAgentsEnvironmentsCreateCall

type ProjectsLocationsAgentsEnvironmentsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsDeleteCall

type ProjectsLocationsAgentsEnvironmentsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsEnvironmentsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsDeployFlowCalladded inv0.58.0

type ProjectsLocationsAgentsEnvironmentsDeployFlowCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsDeployFlowCall)Contextadded inv0.58.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsDeployFlowCall)Doadded inv0.58.0

Do executes the "dialogflow.projects.locations.agents.environments.deployFlow" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsDeployFlowCall)Fieldsadded inv0.58.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsDeployFlowCall)Headeradded inv0.58.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsDeploymentsGetCalladded inv0.58.0

type ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall)Contextadded inv0.58.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall)Doadded inv0.58.0

Do executes the "dialogflow.projects.locations.agents.environments.deployments.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Deployment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall)Fieldsadded inv0.58.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall)Headeradded inv0.58.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsGetCall)IfNoneMatchadded inv0.58.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsEnvironmentsDeploymentsListCalladded inv0.58.0

type ProjectsLocationsAgentsEnvironmentsDeploymentsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)Contextadded inv0.58.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)Doadded inv0.58.0

Do executes the "dialogflow.projects.locations.agents.environments.deployments.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListDeploymentsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)Fieldsadded inv0.58.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)Headeradded inv0.58.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)IfNoneMatchadded inv0.58.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)PageSizeadded inv0.58.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20 and at most 100.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)PageTokenadded inv0.58.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsListCall)Pagesadded inv0.58.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsDeploymentsServiceadded inv0.58.0

type ProjectsLocationsAgentsEnvironmentsDeploymentsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsEnvironmentsDeploymentsServiceadded inv0.58.0

func NewProjectsLocationsAgentsEnvironmentsDeploymentsService(s *Service) *ProjectsLocationsAgentsEnvironmentsDeploymentsService

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsService)Getadded inv0.58.0

Get: Retrieves the specified Deployment.

  • name: The name of the Deployment. Format:`projects//locations//agents//environments//deployments/`.

func (*ProjectsLocationsAgentsEnvironmentsDeploymentsService)Listadded inv0.58.0

List: Returns the list of all deployments in the specified Environment.

  • parent: The Environment to list all environments for. Format:`projects//locations//agents//environments/`.

typeProjectsLocationsAgentsEnvironmentsExperimentsCreateCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsCreateCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsCreateCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Experiment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsCreateCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsCreateCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsExperimentsDeleteCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsDeleteCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsDeleteCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsDeleteCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsDeleteCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsExperimentsGetCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsGetCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsGetCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Experiment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsGetCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsGetCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsGetCall)IfNoneMatchadded inv0.39.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsEnvironmentsExperimentsListCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListExperimentsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)IfNoneMatchadded inv0.39.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)PageSizeadded inv0.39.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20 and at most 100.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)PageTokenadded inv0.39.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsListCall)Pagesadded inv0.39.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsExperimentsPatchCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Experiment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsPatchCall)UpdateMaskadded inv0.39.0

UpdateMask sets the optional parameter "updateMask": Required. The mask tocontrol which fields get updated.

typeProjectsLocationsAgentsEnvironmentsExperimentsServiceadded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsEnvironmentsExperimentsServiceadded inv0.39.0

func NewProjectsLocationsAgentsEnvironmentsExperimentsService(s *Service) *ProjectsLocationsAgentsEnvironmentsExperimentsService

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Createadded inv0.39.0

Create: Creates an Experiment in the specified Environment.

  • parent: The Agent to create an Environment for. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Deleteadded inv0.39.0

Delete: Deletes the specified Experiment.

  • name: The name of the Environment to delete. Format:`projects//locations//agents//environments//experiments/`.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Getadded inv0.39.0

Get: Retrieves the specified Experiment.

  • name: The name of the Environment. Format:`projects//locations//agents//environments//experiments/`.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Listadded inv0.39.0

List: Returns the list of all experiments in the specified Environment.

  • parent: The Environment to list all environments for. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Patchadded inv0.39.0

Patch: Updates the specified Experiment.

  • name: The name of the experiment. Format:projects//locations//agents//environments//experiments/.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Startadded inv0.39.0

Start: Starts the specified Experiment. This rpc only changes the state ofexperiment from PENDING to RUNNING.

  • name: Resource name of the experiment to start. Format:`projects//locations//agents//environments//experiments/`.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsService)Stopadded inv0.39.0

Stop: Stops the specified Experiment. This rpc only changes the state ofexperiment from RUNNING to DONE.

  • name: Resource name of the experiment to stop. Format:`projects//locations//agents//environments//experiments/`.

typeProjectsLocationsAgentsEnvironmentsExperimentsStartCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsStartCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStartCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStartCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.start" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Experiment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStartCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStartCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsExperimentsStopCalladded inv0.39.0

type ProjectsLocationsAgentsEnvironmentsExperimentsStopCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStopCall)Contextadded inv0.39.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStopCall)Doadded inv0.39.0

Do executes the "dialogflow.projects.locations.agents.environments.experiments.stop" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Experiment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStopCall)Fieldsadded inv0.39.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsExperimentsStopCall)Headeradded inv0.39.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsGetCall

type ProjectsLocationsAgentsEnvironmentsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Environment.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsEnvironmentsListCall

type ProjectsLocationsAgentsEnvironmentsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsListCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListEnvironmentsResponse.ServerResponse.Header

or (if a response was returned at all) in error.(*googleapi.Error).Header.

Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20 and at most 100.

func (*ProjectsLocationsAgentsEnvironmentsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall

type ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.lookupEnvironmentHistory" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsLookupEnvironmentHistoryCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsPatchCall

type ProjectsLocationsAgentsEnvironmentsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": Required. The mask tocontrol which fields get updated.

typeProjectsLocationsAgentsEnvironmentsRunContinuousTestCalladded inv0.48.0

type ProjectsLocationsAgentsEnvironmentsRunContinuousTestCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsRunContinuousTestCall)Contextadded inv0.48.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsRunContinuousTestCall)Doadded inv0.48.0

Do executes the "dialogflow.projects.locations.agents.environments.runContinuousTest" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsRunContinuousTestCall)Fieldsadded inv0.48.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsRunContinuousTestCall)Headeradded inv0.48.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsService

type ProjectsLocationsAgentsEnvironmentsService struct {ContinuousTestResults *ProjectsLocationsAgentsEnvironmentsContinuousTestResultsServiceDeployments *ProjectsLocationsAgentsEnvironmentsDeploymentsServiceExperiments *ProjectsLocationsAgentsEnvironmentsExperimentsServiceSessions *ProjectsLocationsAgentsEnvironmentsSessionsService// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsService)Create

Create: Creates an Environment in the specified Agent. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: Environment

  • parent: The Agent to create an Environment for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEnvironmentsService)Delete

Delete: Deletes the specified Environment.

  • name: The name of the Environment to delete. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsService)DeployFlowadded inv0.58.0

DeployFlow: Deploys a flow to the specified Environment. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: DeployFlowMetadata - `response`: DeployFlowResponse

  • environment: The environment to deploy the flow to. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsService)Get

Get: Retrieves the specified Environment.

  • name: The name of the Environment. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsService)List

List: Returns the list of all environments in the specified Agent.

  • parent: The Agent to list all environments for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsEnvironmentsService)LookupEnvironmentHistory

LookupEnvironmentHistory: Looks up the history of the specified Environment.

  • name: Resource name of the environment to look up the history for. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsService)Patch

Patch: Updates the specified Environment. This method is a long-runningoperation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: Environment

  • name: The name of the environment. Format:`projects//locations//agents//environments/`.

func (*ProjectsLocationsAgentsEnvironmentsService)RunContinuousTestadded inv0.48.0

RunContinuousTest: Kicks off a continuous test under the specifiedEnvironment. This method is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: RunContinuousTestMetadata - `response`:RunContinuousTestResponse

- environment: Format: `projects//locations//agents//environments/`.

typeProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall

type ProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.detectIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1DetectIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsDetectIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.entityTypes.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.entityTypes.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.entityTypes.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.entityTypes.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.entityTypes.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated.

typeProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService

type ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService)Create

Create: Creates a session entity type.

  • parent: The session to create a session entity type for. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService)Delete

Delete: Deletes the specified session entity type.

  • name: The name of the session entity type to delete. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService)Get

Get: Retrieves the specified session entity type.

  • name: The name of the session entity type. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService)List

List: Returns the list of all session entity types in the specified session.

  • parent: The session to list all session entity types from. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService)Patch

Patch: Updates the specified session entity type.

  • name: The unique identifier of the session entity type. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

typeProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall

type ProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.fulfillIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1FulfillIntentResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsFulfillIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall

type ProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.environments.sessions.matchIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1MatchIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsMatchIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCalladded inv0.156.0

type ProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCall)Contextadded inv0.156.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCall)Doadded inv0.156.0

Do executes the "dialogflow.projects.locations.agents.environments.sessions.serverStreamingDetectIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1DetectIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCall)Fieldsadded inv0.156.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsEnvironmentsSessionsServerStreamingDetectIntentCall)Headeradded inv0.156.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsEnvironmentsSessionsService

type ProjectsLocationsAgentsEnvironmentsSessionsService struct {EntityTypes *ProjectsLocationsAgentsEnvironmentsSessionsEntityTypesService// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsEnvironmentsSessionsService)DetectIntent

DetectIntent: Processes a natural language query and returns structured,actionable data as a result. This method is not idempotent, because it maycause session entity types to be updated, which in turn might affect resultsof future queries. Note: Always use agent versions for production traffic.See Versions and environments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session). Note:Always use agent versions for production traffic. See Versions andenvironments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

func (*ProjectsLocationsAgentsEnvironmentsSessionsService)FulfillIntent

FulfillIntent: Fulfills a matched intent returned by MatchIntent. Must becalled after MatchIntent, with input from MatchIntentResponse. Otherwise,the behavior is undefined.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session).

func (*ProjectsLocationsAgentsEnvironmentsSessionsService)MatchIntent

MatchIntent: Returns preliminary intent match results, doesn't change thesession status.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session).

func (*ProjectsLocationsAgentsEnvironmentsSessionsService)ServerStreamingDetectIntentadded inv0.156.0

ServerStreamingDetectIntent: Processes a natural language query and returnsstructured, actionable data as a result through server-side streaming.Server-side streaming allows Dialogflow to send partial responses(https://cloud.google.com/dialogflow/cx/docs/concept/fulfillment#partial-response)earlier in a single request.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session). Note:Always use agent versions for production traffic. See Versions andenvironments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

typeProjectsLocationsAgentsExportCall

type ProjectsLocationsAgentsExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsExportCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsExportCall)Do

Do executes the "dialogflow.projects.locations.agents.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsExportCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsExportCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsCreateCall

type ProjectsLocationsAgentsFlowsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Flow.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsCreateCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `flow`: *`Flow.event_handlers.trigger_fulfillment.messages` *`Flow.event_handlers.trigger_fulfillment.conditional_cases` *`Flow.transition_routes.trigger_fulfillment.messages` *`Flow.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsDeleteCall

type ProjectsLocationsAgentsFlowsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsFlowsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsDeleteCall)Force

Force sets the optional parameter "force": This field has no effect forflows with no incoming transitions. For flows with incoming transitions: *If `force` is set to false, an error will be returned with messageindicating the incoming transitions. * If `force` is set to true, Dialogflowwill remove the flow, as well as any transitions to the flow (i.e. Targetflow in event handlers or Target flow in transition routes that point tothis flow will be cleared).

func (*ProjectsLocationsAgentsFlowsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsExportCalladded inv0.46.0

type ProjectsLocationsAgentsFlowsExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsExportCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsExportCall)Doadded inv0.46.0

Do executes the "dialogflow.projects.locations.agents.flows.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsExportCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsExportCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsGetCall

type ProjectsLocationsAgentsFlowsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Flow.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsGetCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language toretrieve the flow for. The following fields are language dependent: *`Flow.event_handlers.trigger_fulfillment.messages` *`Flow.event_handlers.trigger_fulfillment.conditional_cases` *`Flow.transition_routes.trigger_fulfillment.messages` *`Flow.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsGetValidationResultCalladded inv0.37.0

type ProjectsLocationsAgentsFlowsGetValidationResultCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.flows.getValidationResult" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1FlowValidationResult.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsGetValidationResultCall)LanguageCodeadded inv0.37.0

LanguageCode sets the optional parameter "languageCode": If not specified,the agent's default language is used.

typeProjectsLocationsAgentsFlowsImportCalladded inv0.46.0

type ProjectsLocationsAgentsFlowsImportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsImportCall)Contextadded inv0.46.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsImportCall)Doadded inv0.46.0

Do executes the "dialogflow.projects.locations.agents.flows.import" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsImportCall)Fieldsadded inv0.46.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsImportCall)Headeradded inv0.46.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsListCall

type ProjectsLocationsAgentsFlowsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsListCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListFlowsResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsListCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language tolist flows for. The following fields are language dependent: *`Flow.event_handlers.trigger_fulfillment.messages` *`Flow.event_handlers.trigger_fulfillment.conditional_cases` *`Flow.transition_routes.trigger_fulfillment.messages` *`Flow.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsFlowsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsFlowsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsFlowsPagesCreateCall

type ProjectsLocationsAgentsFlowsPagesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPagesCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.pages.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Page.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsPagesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPagesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsPagesCreateCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `page`: * `Page.entry_fulfillment.messages` *`Page.entry_fulfillment.conditional_cases` *`Page.event_handlers.trigger_fulfillment.messages` *`Page.event_handlers.trigger_fulfillment.conditional_cases` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`*`Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.transition_routes.trigger_fulfillment.messages` *`Page.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsPagesDeleteCall

type ProjectsLocationsAgentsFlowsPagesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPagesDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.pages.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsFlowsPagesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPagesDeleteCall)Force

Force sets the optional parameter "force": This field has no effect forpages with no incoming transitions. For pages with incoming transitions: *If `force` is set to false, an error will be returned with messageindicating the incoming transitions. * If `force` is set to true, Dialogflowwill remove the page, as well as any transitions to the page (i.e. Targetpage in event handlers or Target page in transition routes that point tothis page will be cleared).

func (*ProjectsLocationsAgentsFlowsPagesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsPagesGetCall

type ProjectsLocationsAgentsFlowsPagesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPagesGetCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.pages.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Page.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsPagesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPagesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsPagesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsPagesGetCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language toretrieve the page for. The following fields are language dependent: *`Page.entry_fulfillment.messages` *`Page.entry_fulfillment.conditional_cases` *`Page.event_handlers.trigger_fulfillment.messages` *`Page.event_handlers.trigger_fulfillment.conditional_cases` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`*`Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.transition_routes.trigger_fulfillment.messages` *`Page.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsPagesListCall

type ProjectsLocationsAgentsFlowsPagesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPagesListCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.pages.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListPagesResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsPagesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPagesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsPagesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsPagesListCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language tolist pages for. The following fields are language dependent: *`Page.entry_fulfillment.messages` *`Page.entry_fulfillment.conditional_cases` *`Page.event_handlers.trigger_fulfillment.messages` *`Page.event_handlers.trigger_fulfillment.conditional_cases` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`*`Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.transition_routes.trigger_fulfillment.messages` *`Page.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsPagesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsFlowsPagesListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsFlowsPagesListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsFlowsPagesPatchCall

type ProjectsLocationsAgentsFlowsPagesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.pages.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Page.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `page`: * `Page.entry_fulfillment.messages` *`Page.entry_fulfillment.conditional_cases` *`Page.event_handlers.trigger_fulfillment.messages` *`Page.event_handlers.trigger_fulfillment.conditional_cases` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages` *`Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`*`Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.transition_routes.trigger_fulfillment.messages` *`Page.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsPagesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsFlowsPagesService

type ProjectsLocationsAgentsFlowsPagesService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPagesService)Create

Create: Creates a page in the specified flow.

  • parent: The flow to create a page for. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsPagesService)Delete

Delete: Deletes the specified page.

  • name: The name of the page to delete. Format:`projects//locations//agents//Flows//pages/`.

func (*ProjectsLocationsAgentsFlowsPagesService)Get

Get: Retrieves the specified page.

  • name: The name of the page. Format:`projects//locations//agents//flows//pages/`.

func (*ProjectsLocationsAgentsFlowsPagesService)List

List: Returns the list of all pages in the specified flow.

  • parent: The flow to list all pages for. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsPagesService)Patch

Patch: Updates the specified page.

  • name: The unique identifier of the page. Required for the Pages.UpdatePagemethod. Pages.CreatePage populates the name automatically. Format:`projects//locations//agents//flows//pages/`.

typeProjectsLocationsAgentsFlowsPatchCall

type ProjectsLocationsAgentsFlowsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Flow.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsPatchCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `flow`: *`Flow.event_handlers.trigger_fulfillment.messages` *`Flow.event_handlers.trigger_fulfillment.conditional_cases` *`Flow.transition_routes.trigger_fulfillment.messages` *`Flow.transition_routes.trigger_fulfillment.conditional_cases` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsFlowsService

type ProjectsLocationsAgentsFlowsService struct {Pages *ProjectsLocationsAgentsFlowsPagesServiceTransitionRouteGroups *ProjectsLocationsAgentsFlowsTransitionRouteGroupsServiceVersions *ProjectsLocationsAgentsFlowsVersionsService// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsService)Create

Create: Creates a flow in the specified agent. Note: You should always traina flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The agent to create a flow for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsFlowsService)Delete

Delete: Deletes a specified flow.

  • name: The name of the flow to delete. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsService)Exportadded inv0.46.0

Export: Exports the specified flow to a binary file. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: ExportFlowResponse Note that resources (e.g. intents,entities, webhooks) that the flow references will also be exported.

  • name: The name of the flow to export. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsService)Get

Get: Retrieves the specified flow.

  • name: The name of the flow to get. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsService)GetValidationResultadded inv0.37.0

GetValidationResult: Gets the latest flow validation result. Flow validationis performed when ValidateFlow is called.

  • name: The flow name. Format:`projects//locations//agents//flows//validationResult`.

func (*ProjectsLocationsAgentsFlowsService)Importadded inv0.46.0

Import: Imports the specified flow to the specified agent from a binaryfile. This method is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: ImportFlowResponse Note: You should always train a flow priorto sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The agent to import the flow into. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsFlowsService)List

List: Returns the list of all flows in the specified agent.

  • parent: The agent containing the flows. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsFlowsService)Patch

Patch: Updates the specified flow. Note: You should always train a flowprior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the flow. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsService)Train

Train: Trains the specified flow. Note that only the flow in 'draft'environment is trained. This method is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: An Empty message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#empty)Note: You should always train a flow prior to sending it queries. See thetraining documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

- name: The flow to train. Format: `projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsService)Validateadded inv0.37.0

Validate: Validates the specified flow and creates or updates validationresults. Please call this API after the training is completed to get thecomplete validation results.

- name: The flow to validate. Format: `projects//locations//agents//flows/`.

typeProjectsLocationsAgentsFlowsTrainCall

type ProjectsLocationsAgentsFlowsTrainCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTrainCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTrainCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.train" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsTrainCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTrainCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.transitionRouteGroups.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsCreateCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `TransitionRouteGroup`: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.transitionRouteGroups.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall)Force

Force sets the optional parameter "force": This field has no effect fortransition route group that no page is using. If the transition route groupis referenced by any page: * If `force` is set to false, an error will bereturned with message indicating pages that reference the transition routegroup. * If `force` is set to true, Dialogflow will remove the transitionroute group, as well as any reference to it.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.transitionRouteGroups.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsGetCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language toretrieve the transition route group for. The following fields are languagedependent: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.transitionRouteGroups.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language tolist transition route groups for. The following fields are languagedependent: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.transitionRouteGroups.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `TransitionRouteGroup`: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated.

typeProjectsLocationsAgentsFlowsTransitionRouteGroupsService

type ProjectsLocationsAgentsFlowsTransitionRouteGroupsService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsService)Create

Create: Creates an TransitionRouteGroup in the specified flow. Note: Youshould always train a flow prior to sending it queries. See the trainingdocumentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The flow to create an TransitionRouteGroup for. Format:`projects//locations//agents//flows/` or `projects//locations//agents/`for agent-level groups.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsService)Delete

Delete: Deletes the specified TransitionRouteGroup. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The name of the TransitionRouteGroup to delete. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/`.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsService)Get

Get: Retrieves the specified TransitionRouteGroup.

  • name: The name of the TransitionRouteGroup. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/`.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsService)List

List: Returns the list of all transition route groups in the specified flow.

  • parent: The flow to list all transition route groups for. Format:`projects//locations//agents//flows/` or `projects//locations//agents/.

func (*ProjectsLocationsAgentsFlowsTransitionRouteGroupsService)Patch

Patch: Updates the specified TransitionRouteGroup. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the transition route group.TransitionRouteGroups.CreateTransitionRouteGroup populates the nameautomatically. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/` for agent-levelgroups.

typeProjectsLocationsAgentsFlowsValidateCalladded inv0.37.0

type ProjectsLocationsAgentsFlowsValidateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsValidateCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsValidateCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.flows.validate" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1FlowValidationResult.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsValidateCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsValidateCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsVersionsCompareVersionsCalladded inv0.60.0

type ProjectsLocationsAgentsFlowsVersionsCompareVersionsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsCompareVersionsCall)Contextadded inv0.60.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsCompareVersionsCall)Doadded inv0.60.0

Do executes the "dialogflow.projects.locations.agents.flows.versions.compareVersions" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1CompareVersionsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsCompareVersionsCall)Fieldsadded inv0.60.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsCompareVersionsCall)Headeradded inv0.60.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsVersionsCreateCall

type ProjectsLocationsAgentsFlowsVersionsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsVersionsDeleteCall

type ProjectsLocationsAgentsFlowsVersionsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsFlowsVersionsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsVersionsGetCall

type ProjectsLocationsAgentsFlowsVersionsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Version.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsVersionsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsFlowsVersionsListCall

type ProjectsLocationsAgentsFlowsVersionsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListVersionsResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20 and at most 100.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsFlowsVersionsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsFlowsVersionsLoadCall

type ProjectsLocationsAgentsFlowsVersionsLoadCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsLoadCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsLoadCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.load" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsLoadCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsLoadCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsFlowsVersionsPatchCall

type ProjectsLocationsAgentsFlowsVersionsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsFlowsVersionsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.flows.versions.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Version.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsFlowsVersionsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsFlowsVersionsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsFlowsVersionsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": Required. The mask tocontrol which fields get updated. Currently only `description` and`display_name` can be updated.

typeProjectsLocationsAgentsFlowsVersionsService

type ProjectsLocationsAgentsFlowsVersionsService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsFlowsVersionsService)CompareVersionsadded inv0.60.0

CompareVersions: Compares the specified base version with target version.

  • baseVersion: Name of the base flow version to compare with the targetversion. Use version ID `0` to indicate the draft version of the specifiedflow. Format: `projects//locations//agents//flows//versions/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)Create

Create: Creates a Version in the specified Flow. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: CreateVersionOperationMetadata - `response`: Version

  • parent: The Flow to create an Version for. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)Delete

Delete: Deletes the specified Version.

  • name: The name of the Version to delete. Format:`projects//locations//agents//flows//versions/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)Get

Get: Retrieves the specified Version.

  • name: The name of the Version. Format:`projects//locations//agents//flows//versions/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)List

List: Returns the list of all versions in the specified Flow.

  • parent: The Flow to list all versions for. Format:`projects//locations//agents//flows/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)Load

Load: Loads resources in the specified version to the draft flow. Thismethod is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: An Empty message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#empty)

  • name: The Version to be loaded to draft flow. Format:`projects//locations//agents//flows//versions/`.

func (*ProjectsLocationsAgentsFlowsVersionsService)Patch

Patch: Updates the specified Version.

  • name: Format: projects//locations//agents//flows//versions/. Version ID isa self-increasing number generated by Dialogflow upon version creation.

typeProjectsLocationsAgentsGeneratorsCreateCalladded inv0.154.0

type ProjectsLocationsAgentsGeneratorsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGeneratorsCreateCall)Contextadded inv0.154.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGeneratorsCreateCall)Doadded inv0.154.0

Do executes the "dialogflow.projects.locations.agents.generators.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Generator.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGeneratorsCreateCall)Fieldsadded inv0.154.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGeneratorsCreateCall)Headeradded inv0.154.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGeneratorsCreateCall)LanguageCodeadded inv0.154.0

LanguageCode sets the optional parameter "languageCode": The language tocreate generators for the following fields: * `Generator.prompt_text.text`If not specified, the agent's default language is used.

typeProjectsLocationsAgentsGeneratorsDeleteCalladded inv0.154.0

type ProjectsLocationsAgentsGeneratorsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGeneratorsDeleteCall)Contextadded inv0.154.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGeneratorsDeleteCall)Doadded inv0.154.0

Do executes the "dialogflow.projects.locations.agents.generators.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsGeneratorsDeleteCall)Fieldsadded inv0.154.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGeneratorsDeleteCall)Forceadded inv0.154.0

Force sets the optional parameter "force": This field has no effect forgenerators not being used. For generators that are used bypages/flows/transition route groups: * If `force` is set to false, an errorwill be returned with message indicating the referenced resources. * If`force` is set to true, Dialogflow will remove the generator, as well as anyreferences to the generator (i.e. Generator) in fulfillments.

func (*ProjectsLocationsAgentsGeneratorsDeleteCall)Headeradded inv0.154.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsGeneratorsGetCalladded inv0.154.0

type ProjectsLocationsAgentsGeneratorsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGeneratorsGetCall)Contextadded inv0.154.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGeneratorsGetCall)Doadded inv0.154.0

Do executes the "dialogflow.projects.locations.agents.generators.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Generator.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGeneratorsGetCall)Fieldsadded inv0.154.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGeneratorsGetCall)Headeradded inv0.154.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGeneratorsGetCall)IfNoneMatchadded inv0.154.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsGeneratorsGetCall)LanguageCodeadded inv0.154.0

LanguageCode sets the optional parameter "languageCode": The language tolist generators for.

typeProjectsLocationsAgentsGeneratorsListCalladded inv0.154.0

type ProjectsLocationsAgentsGeneratorsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGeneratorsListCall)Contextadded inv0.154.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGeneratorsListCall)Doadded inv0.154.0

Do executes the "dialogflow.projects.locations.agents.generators.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListGeneratorsResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGeneratorsListCall)Fieldsadded inv0.154.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGeneratorsListCall)Headeradded inv0.154.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGeneratorsListCall)IfNoneMatchadded inv0.154.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsGeneratorsListCall)LanguageCodeadded inv0.154.0

LanguageCode sets the optional parameter "languageCode": The language tolist generators for.

func (*ProjectsLocationsAgentsGeneratorsListCall)PageSizeadded inv0.154.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsGeneratorsListCall)PageTokenadded inv0.154.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsGeneratorsListCall)Pagesadded inv0.154.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsGeneratorsPatchCalladded inv0.154.0

type ProjectsLocationsAgentsGeneratorsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGeneratorsPatchCall)Contextadded inv0.154.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGeneratorsPatchCall)Doadded inv0.154.0

Do executes the "dialogflow.projects.locations.agents.generators.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Generator.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGeneratorsPatchCall)Fieldsadded inv0.154.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGeneratorsPatchCall)Headeradded inv0.154.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGeneratorsPatchCall)LanguageCodeadded inv0.154.0

LanguageCode sets the optional parameter "languageCode": The language tolist generators for.

func (*ProjectsLocationsAgentsGeneratorsPatchCall)UpdateMaskadded inv0.154.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsGeneratorsServiceadded inv0.154.0

type ProjectsLocationsAgentsGeneratorsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsGeneratorsServiceadded inv0.154.0

func NewProjectsLocationsAgentsGeneratorsService(s *Service) *ProjectsLocationsAgentsGeneratorsService

func (*ProjectsLocationsAgentsGeneratorsService)Createadded inv0.154.0

Create: Creates a generator in the specified agent.

  • parent: The agent to create a generator for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsGeneratorsService)Deleteadded inv0.154.0

Delete: Deletes the specified generators.

  • name: The name of the generator to delete. Format:`projects//locations//agents//generators/`.

func (*ProjectsLocationsAgentsGeneratorsService)Getadded inv0.154.0

Get: Retrieves the specified generator.

  • name: The name of the generator. Format:`projects//locations//agents//generators/`.

func (*ProjectsLocationsAgentsGeneratorsService)Listadded inv0.154.0

List: Returns the list of all generators in the specified agent.

  • parent: The agent to list all generators for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsGeneratorsService)Patchadded inv0.154.0

Patch: Update the specified generator.

  • name: The unique identifier of the generator. Must be set for theGenerators.UpdateGenerator method. Generators.CreateGenerate populates thename automatically. Format: `projects//locations//agents//generators/`.

typeProjectsLocationsAgentsGetCall

type ProjectsLocationsAgentsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Agent.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsGetGenerativeSettingsCalladded inv0.139.0

type ProjectsLocationsAgentsGetGenerativeSettingsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)Contextadded inv0.139.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)Doadded inv0.139.0

Do executes the "dialogflow.projects.locations.agents.getGenerativeSettings" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1GenerativeSettings.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)Fieldsadded inv0.139.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)Headeradded inv0.139.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)IfNoneMatchadded inv0.139.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsGetGenerativeSettingsCall)LanguageCodeadded inv0.139.0

LanguageCode sets the optional parameter "languageCode": Required. Languagecode of the generative settings.

typeProjectsLocationsAgentsGetValidationResultCalladded inv0.37.0

type ProjectsLocationsAgentsGetValidationResultCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsGetValidationResultCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsGetValidationResultCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.getValidationResult" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1AgentValidationResult.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsGetValidationResultCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsGetValidationResultCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsGetValidationResultCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsGetValidationResultCall)LanguageCodeadded inv0.37.0

LanguageCode sets the optional parameter "languageCode": If not specified,the agent's default language is used.

typeProjectsLocationsAgentsIntentsCreateCall

type ProjectsLocationsAgentsIntentsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.intents.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Intent.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsIntentsCreateCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `intent`: * `Intent.training_phrases.parts.text` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsIntentsDeleteCall

type ProjectsLocationsAgentsIntentsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.intents.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsIntentsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsIntentsExportCalladded inv0.143.0

type ProjectsLocationsAgentsIntentsExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsExportCall)Contextadded inv0.143.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsExportCall)Doadded inv0.143.0

Do executes the "dialogflow.projects.locations.agents.intents.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsExportCall)Fieldsadded inv0.143.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsExportCall)Headeradded inv0.143.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsIntentsGetCall

type ProjectsLocationsAgentsIntentsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsGetCall)Do

Do executes the "dialogflow.projects.locations.agents.intents.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Intent.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsIntentsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsIntentsGetCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language toretrieve the intent for. The following fields are language dependent: *`Intent.training_phrases.parts.text` If not specified, the agent's defaultlanguage is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsIntentsImportCalladded inv0.143.0

type ProjectsLocationsAgentsIntentsImportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsImportCall)Contextadded inv0.143.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsImportCall)Doadded inv0.143.0

Do executes the "dialogflow.projects.locations.agents.intents.import" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsImportCall)Fieldsadded inv0.143.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsImportCall)Headeradded inv0.143.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsIntentsListCall

type ProjectsLocationsAgentsIntentsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsListCall)Do

Do executes the "dialogflow.projects.locations.agents.intents.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListIntentsResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsIntentsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsIntentsListCall)IntentView

IntentView sets the optional parameter "intentView": The resource view toapply to the returned intent.

Possible values:

"INTENT_VIEW_UNSPECIFIED" - Not specified. Treated as INTENT_VIEW_FULL."INTENT_VIEW_PARTIAL" - Training phrases field is not populated in the

response.

"INTENT_VIEW_FULL" - All fields are populated.

func (*ProjectsLocationsAgentsIntentsListCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language tolist intents for. The following fields are language dependent: *`Intent.training_phrases.parts.text` If not specified, the agent's defaultlanguage is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsIntentsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsIntentsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsIntentsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsIntentsPatchCall

type ProjectsLocationsAgentsIntentsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsIntentsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.intents.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Intent.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsIntentsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsIntentsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsIntentsPatchCall)LanguageCode

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `intent`: * `Intent.training_phrases.parts.text` If notspecified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsIntentsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsIntentsService

type ProjectsLocationsAgentsIntentsService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsIntentsService)Create

Create: Creates an intent in the specified agent. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The agent to create an intent for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsIntentsService)Delete

Delete: Deletes the specified intent. Note: You should always train a flowprior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The name of the intent to delete. Format:`projects//locations//agents//intents/`.

func (*ProjectsLocationsAgentsIntentsService)Exportadded inv0.143.0

Export: Exports the selected intents. This method is a long-runningoperation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: ExportIntentsMetadata - `response`: ExportIntentsResponse

  • parent: The name of the parent agent to export intents. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsIntentsService)Get

Get: Retrieves the specified intent.

  • name: The name of the intent. Format:`projects//locations//agents//intents/`.

func (*ProjectsLocationsAgentsIntentsService)Importadded inv0.143.0

Import: Imports the specified intents into the agent. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: ImportIntentsMetadata - `response`: ImportIntentsResponse

  • parent: The agent to import the intents into. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsIntentsService)List

List: Returns the list of all intents in the specified agent.

  • parent: The agent to list all intents for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsIntentsService)Patch

Patch: Updates the specified intent. Note: You should always train a flowprior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the intent. Required for theIntents.UpdateIntent method. Intents.CreateIntent populates the nameautomatically. Format: `projects//locations//agents//intents/`.

typeProjectsLocationsAgentsListCall

type ProjectsLocationsAgentsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsListCall)Do

Do executes the "dialogflow.projects.locations.agents.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListAgentsResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsPatchCall

type ProjectsLocationsAgentsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Agent.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsPlaybooksCreateCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksCreateCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksCreateCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Playbook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksCreateCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksCreateCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksDeleteCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksDeleteCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksDeleteCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsPlaybooksDeleteCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksDeleteCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksExamplesCreateCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExamplesCreateCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExamplesCreateCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.examples.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Example.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksExamplesCreateCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExamplesCreateCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksExamplesDeleteCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExamplesDeleteCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExamplesDeleteCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.examples.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsPlaybooksExamplesDeleteCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExamplesDeleteCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksExamplesGetCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExamplesGetCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExamplesGetCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.examples.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Example.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksExamplesGetCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExamplesGetCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksExamplesGetCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsPlaybooksExamplesListCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.examples.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListExamplesResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)LanguageCodeadded inv0.185.0

LanguageCode sets the optional parameter "languageCode": The language tolist examples for. If not specified, list all examples under the playbook.Note: languages must be enabled in the agent before they can be used.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)PageSizeadded inv0.185.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)PageTokenadded inv0.185.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsPlaybooksExamplesListCall)Pagesadded inv0.185.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsPlaybooksExamplesPatchCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExamplesPatchCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExamplesPatchCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.examples.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Example.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksExamplesPatchCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExamplesPatchCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksExamplesPatchCall)UpdateMaskadded inv0.185.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsPlaybooksExamplesServiceadded inv0.185.0

type ProjectsLocationsAgentsPlaybooksExamplesService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsPlaybooksExamplesServiceadded inv0.185.0

func NewProjectsLocationsAgentsPlaybooksExamplesService(s *Service) *ProjectsLocationsAgentsPlaybooksExamplesService

func (*ProjectsLocationsAgentsPlaybooksExamplesService)Createadded inv0.185.0

Create: Creates an example in the specified playbook.

  • parent: The playbook to create an example for. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksExamplesService)Deleteadded inv0.185.0

Delete: Deletes the specified example.

  • name: The name of the example to delete. Format:`projects//locations//agents//playbooks//examples/`.

func (*ProjectsLocationsAgentsPlaybooksExamplesService)Getadded inv0.185.0

Get: Retrieves the specified example.

  • name: The name of the example. Format:`projects//locations//agents//playbooks//examples/`.

func (*ProjectsLocationsAgentsPlaybooksExamplesService)Listadded inv0.185.0

List: Returns a list of examples in the specified playbook.

  • parent: The playbook to list the examples from. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksExamplesService)Patchadded inv0.185.0

Patch: Update the specified example.

  • name: The unique identifier of the playbook example. Format:`projects//locations//agents//playbooks//examples/`.

typeProjectsLocationsAgentsPlaybooksExportCalladded inv0.212.0

type ProjectsLocationsAgentsPlaybooksExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksExportCall)Contextadded inv0.212.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksExportCall)Doadded inv0.212.0

Do executes the "dialogflow.projects.locations.agents.playbooks.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksExportCall)Fieldsadded inv0.212.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksExportCall)Headeradded inv0.212.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksGetCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksGetCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksGetCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Playbook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksGetCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksGetCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksGetCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsPlaybooksImportCalladded inv0.212.0

type ProjectsLocationsAgentsPlaybooksImportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksImportCall)Contextadded inv0.212.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksImportCall)Doadded inv0.212.0

Do executes the "dialogflow.projects.locations.agents.playbooks.import" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksImportCall)Fieldsadded inv0.212.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksImportCall)Headeradded inv0.212.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksListCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksListCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksListCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListPlaybooksResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksListCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksListCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksListCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsPlaybooksListCall)PageSizeadded inv0.185.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsPlaybooksListCall)PageTokenadded inv0.185.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsPlaybooksListCall)Pagesadded inv0.185.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsPlaybooksPatchCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksPatchCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksPatchCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Playbook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksPatchCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksPatchCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksPatchCall)UpdateMaskadded inv0.185.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsPlaybooksServiceadded inv0.185.0

type ProjectsLocationsAgentsPlaybooksService struct {Examples *ProjectsLocationsAgentsPlaybooksExamplesServiceVersions *ProjectsLocationsAgentsPlaybooksVersionsService// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsPlaybooksServiceadded inv0.185.0

func NewProjectsLocationsAgentsPlaybooksService(s *Service) *ProjectsLocationsAgentsPlaybooksService

func (*ProjectsLocationsAgentsPlaybooksService)Createadded inv0.185.0

Create: Creates a playbook in a specified agent.

  • parent: The agent to create a playbook for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsPlaybooksService)Deleteadded inv0.185.0

Delete: Deletes a specified playbook.

  • name: The name of the playbook to delete. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksService)Exportadded inv0.212.0

Export: Exports the specified playbook to a binary file. Note that resources(e.g. examples, tools) that the playbook references will also be exported.

  • name: The name of the playbook to export. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksService)Getadded inv0.185.0

Get: Retrieves the specified Playbook.

  • name: The name of the playbook. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksService)Importadded inv0.212.0

Import: Imports the specified playbook to the specified agent from a binaryfile.

  • parent: The agent to import the playbook into. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsPlaybooksService)Listadded inv0.185.0

List: Returns a list of playbooks in the specified agent.

  • parent: The agent to list playbooks from. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsPlaybooksService)Patchadded inv0.185.0

Patch: Updates the specified Playbook.

  • name: The unique identifier of the playbook. Format:`projects//locations//agents//playbooks/`.

typeProjectsLocationsAgentsPlaybooksVersionsCreateCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksVersionsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksVersionsCreateCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksVersionsCreateCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.versions.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1PlaybookVersion.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksVersionsCreateCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksVersionsCreateCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksVersionsDeleteCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksVersionsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksVersionsDeleteCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksVersionsDeleteCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.versions.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsPlaybooksVersionsDeleteCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksVersionsDeleteCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksVersionsGetCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksVersionsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksVersionsGetCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksVersionsGetCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.versions.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1PlaybookVersion.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksVersionsGetCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksVersionsGetCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksVersionsGetCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsPlaybooksVersionsListCalladded inv0.185.0

type ProjectsLocationsAgentsPlaybooksVersionsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.playbooks.versions.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListPlaybookVersionsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)PageSizeadded inv0.185.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)PageTokenadded inv0.185.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsPlaybooksVersionsListCall)Pagesadded inv0.185.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsPlaybooksVersionsRestoreCalladded inv0.212.0

type ProjectsLocationsAgentsPlaybooksVersionsRestoreCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsPlaybooksVersionsRestoreCall)Contextadded inv0.212.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsPlaybooksVersionsRestoreCall)Doadded inv0.212.0

Do executes the "dialogflow.projects.locations.agents.playbooks.versions.restore" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsPlaybooksVersionsRestoreCall)Fieldsadded inv0.212.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsPlaybooksVersionsRestoreCall)Headeradded inv0.212.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsPlaybooksVersionsServiceadded inv0.185.0

type ProjectsLocationsAgentsPlaybooksVersionsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsPlaybooksVersionsServiceadded inv0.185.0

func NewProjectsLocationsAgentsPlaybooksVersionsService(s *Service) *ProjectsLocationsAgentsPlaybooksVersionsService

func (*ProjectsLocationsAgentsPlaybooksVersionsService)Createadded inv0.185.0

Create: Creates a version for the specified Playbook.

  • parent: The playbook to create a version for. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksVersionsService)Deleteadded inv0.185.0

Delete: Deletes the specified version of the Playbook.

  • name: The name of the playbook version to delete. Format:`projects//locations//agents//playbooks//versions/`.

func (*ProjectsLocationsAgentsPlaybooksVersionsService)Getadded inv0.185.0

Get: Retrieves the specified version of the Playbook.

  • name: The name of the playbook version. Format:`projects//locations//agents//playbooks//versions/`.

func (*ProjectsLocationsAgentsPlaybooksVersionsService)Listadded inv0.185.0

List: Lists versions for the specified Playbook.

  • parent: The playbook to list versions for. Format:`projects//locations//agents//playbooks/`.

func (*ProjectsLocationsAgentsPlaybooksVersionsService)Restoreadded inv0.212.0

Restore: Retrieves the specified version of the Playbook and stores it asthe current playbook draft, returning the playbook with resources updated.

  • name: The name of the playbook version. Format:`projects//locations//agents//playbooks//versions/`.

typeProjectsLocationsAgentsRestoreCall

type ProjectsLocationsAgentsRestoreCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsRestoreCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsRestoreCall)Do

Do executes the "dialogflow.projects.locations.agents.restore" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsRestoreCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsRestoreCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsService

funcNewProjectsLocationsAgentsService

func NewProjectsLocationsAgentsService(s *Service) *ProjectsLocationsAgentsService

func (*ProjectsLocationsAgentsService)Create

Create: Creates an agent in the specified location. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The location to create a agent for. Format:`projects//locations/`.

func (*ProjectsLocationsAgentsService)Delete

Delete: Deletes the specified agent.

  • name: The name of the agent to delete. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsService)Export

Export: Exports the specified agent to a binary file. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: ExportAgentResponse

  • name: The name of the agent to export. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsService)Get

Get: Retrieves the specified agent.

- name: The name of the agent. Format: `projects//locations//agents/`.

func (*ProjectsLocationsAgentsService)GetGenerativeSettingsadded inv0.139.0

GetGenerativeSettings: Gets the generative settings for the agent.

- name: Format: `projects//locations//agents//generativeSettings`.

func (*ProjectsLocationsAgentsService)GetValidationResultadded inv0.37.0

GetValidationResult: Gets the latest agent validation result. Agentvalidation is performed when ValidateAgent is called.

  • name: The agent name. Format:`projects//locations//agents//validationResult`.

func (*ProjectsLocationsAgentsService)List

List: Returns the list of all agents in the specified location.

  • parent: The location to list all agents for. Format:`projects//locations/`.

func (*ProjectsLocationsAgentsService)Patch

Patch: Updates the specified agent. Note: You should always train a flowprior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the agent. Required for theAgents.UpdateAgent method. Agents.CreateAgent populates the nameautomatically. Format: `projects//locations//agents/`.

func (*ProjectsLocationsAgentsService)Restore

Restore: Restores the specified agent from a binary file. Replaces thecurrent agent with a new one. Note that all existing resources in agent(e.g. intents, entity types, flows) will be removed. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: An empty Struct message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#struct)- `response`: An Empty message(https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#empty)Note: You should always train a flow prior to sending it queries. See thetraining documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The name of the agent to restore into. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsService)UpdateGenerativeSettingsadded inv0.139.0

func (r *ProjectsLocationsAgentsService) UpdateGenerativeSettings(namestring, googleclouddialogflowcxv3beta1generativesettings *GoogleCloudDialogflowCxV3beta1GenerativeSettings) *ProjectsLocationsAgentsUpdateGenerativeSettingsCall

UpdateGenerativeSettings: Updates the generative settings for the agent.

- name: Format: `projects//locations//agents//generativeSettings`.

func (*ProjectsLocationsAgentsService)Validateadded inv0.37.0

func (r *ProjectsLocationsAgentsService) Validate(namestring, googleclouddialogflowcxv3beta1validateagentrequest *GoogleCloudDialogflowCxV3beta1ValidateAgentRequest) *ProjectsLocationsAgentsValidateCall

Validate: Validates the specified agent and creates or updates validationresults. The agent in draft version is validated. Please call this API afterthe training is completed to get the complete validation results.

- name: The agent to validate. Format: `projects//locations//agents/`.

typeProjectsLocationsAgentsSessionsDetectIntentCall

type ProjectsLocationsAgentsSessionsDetectIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsDetectIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsDetectIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.detectIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1DetectIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsDetectIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsDetectIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsEntityTypesCreateCall

type ProjectsLocationsAgentsSessionsEntityTypesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsEntityTypesCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.entityTypes.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsEntityTypesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsEntityTypesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsEntityTypesDeleteCall

type ProjectsLocationsAgentsSessionsEntityTypesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsEntityTypesDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.entityTypes.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsSessionsEntityTypesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsEntityTypesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsEntityTypesGetCall

type ProjectsLocationsAgentsSessionsEntityTypesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsEntityTypesGetCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.entityTypes.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsEntityTypesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsEntityTypesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsSessionsEntityTypesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsSessionsEntityTypesListCall

type ProjectsLocationsAgentsSessionsEntityTypesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.entityTypes.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsSessionsEntityTypesListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsSessionsEntityTypesPatchCall

type ProjectsLocationsAgentsSessionsEntityTypesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsEntityTypesPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.entityTypes.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SessionEntityType.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsEntityTypesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsEntityTypesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsSessionsEntityTypesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated.

typeProjectsLocationsAgentsSessionsEntityTypesService

type ProjectsLocationsAgentsSessionsEntityTypesService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsEntityTypesService)Create

Create: Creates a session entity type.

  • parent: The session to create a session entity type for. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsSessionsEntityTypesService)Delete

Delete: Deletes the specified session entity type.

  • name: The name of the session entity type to delete. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsSessionsEntityTypesService)Get

Get: Retrieves the specified session entity type.

  • name: The name of the session entity type. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsSessionsEntityTypesService)List

List: Returns the list of all session entity types in the specified session.

  • parent: The session to list all session entity types from. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment.

func (*ProjectsLocationsAgentsSessionsEntityTypesService)Patch

Patch: Updates the specified session entity type.

  • name: The unique identifier of the session entity type. Format:`projects//locations//agents//sessions//entityTypes/` or`projects//locations//agents//environments//sessions//entityTypes/`. If`Environment ID` is not specified, we assume default 'draft' environment.

typeProjectsLocationsAgentsSessionsFulfillIntentCall

type ProjectsLocationsAgentsSessionsFulfillIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsFulfillIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsFulfillIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.fulfillIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1FulfillIntentResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsFulfillIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsFulfillIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsMatchIntentCall

type ProjectsLocationsAgentsSessionsMatchIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsMatchIntentCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsMatchIntentCall)Do

Do executes the "dialogflow.projects.locations.agents.sessions.matchIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1MatchIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsMatchIntentCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsMatchIntentCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsServerStreamingDetectIntentCalladded inv0.156.0

type ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall)Contextadded inv0.156.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall)Doadded inv0.156.0

Do executes the "dialogflow.projects.locations.agents.sessions.serverStreamingDetectIntent" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1DetectIntentResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall)Fieldsadded inv0.156.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall)Headeradded inv0.156.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsSessionsService

type ProjectsLocationsAgentsSessionsService struct {EntityTypes *ProjectsLocationsAgentsSessionsEntityTypesService// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsService)DetectIntent

DetectIntent: Processes a natural language query and returns structured,actionable data as a result. This method is not idempotent, because it maycause session entity types to be updated, which in turn might affect resultsof future queries. Note: Always use agent versions for production traffic.See Versions and environments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session). Note:Always use agent versions for production traffic. See Versions andenvironments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

func (*ProjectsLocationsAgentsSessionsService)FulfillIntent

FulfillIntent: Fulfills a matched intent returned by MatchIntent. Must becalled after MatchIntent, with input from MatchIntentResponse. Otherwise,the behavior is undefined.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session).

func (*ProjectsLocationsAgentsSessionsService)MatchIntent

MatchIntent: Returns preliminary intent match results, doesn't change thesession status.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session).

func (*ProjectsLocationsAgentsSessionsService)ServerStreamingDetectIntentadded inv0.156.0

func (r *ProjectsLocationsAgentsSessionsService) ServerStreamingDetectIntent(sessionidstring, googleclouddialogflowcxv3beta1detectintentrequest *GoogleCloudDialogflowCxV3beta1DetectIntentRequest) *ProjectsLocationsAgentsSessionsServerStreamingDetectIntentCall

ServerStreamingDetectIntent: Processes a natural language query and returnsstructured, actionable data as a result through server-side streaming.Server-side streaming allows Dialogflow to send partial responses(https://cloud.google.com/dialogflow/cx/docs/concept/fulfillment#partial-response)earlier in a single request.

  • session: The name of the session this query is sent to. Format:`projects//locations//agents//sessions/` or`projects//locations//agents//environments//sessions/`. If `EnvironmentID` is not specified, we assume default 'draft' environment. It's up tothe API caller to choose an appropriate `Session ID`. It can be a randomnumber or some type of session identifiers (preferably hashed). The lengthof the `Session ID` must not exceed 36 characters. For more information,see the sessions guide(https://cloud.google.com/dialogflow/cx/docs/concept/session). Note:Always use agent versions for production traffic. See Versions andenvironments(https://cloud.google.com/dialogflow/cx/docs/concept/version).

func (*ProjectsLocationsAgentsSessionsService)SubmitAnswerFeedbackadded inv0.152.0

SubmitAnswerFeedback: Updates the feedback received from the user for asingle turn of the bot response.

- session: The name of the session the feedback was sent to.

typeProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCalladded inv0.152.0

type ProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCall)Contextadded inv0.152.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCall)Doadded inv0.152.0

Do executes the "dialogflow.projects.locations.agents.sessions.submitAnswerFeedback" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1AnswerFeedback.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCall)Fieldsadded inv0.152.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsSessionsSubmitAnswerFeedbackCall)Headeradded inv0.152.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesBatchDeleteCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesBatchDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesBatchDeleteCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesBatchDeleteCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.batchDelete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsTestCasesBatchDeleteCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesBatchDeleteCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesBatchRunCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesBatchRunCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesBatchRunCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesBatchRunCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.batchRun" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesBatchRunCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesBatchRunCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesCalculateCoverageCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesCalculateCoverageCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.calculateCoverage" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1CalculateCoverageResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsTestCasesCalculateCoverageCall)Typeadded inv0.37.0

Type sets the optional parameter "type": Required. The type of coveragerequested.

Possible values:

"COVERAGE_TYPE_UNSPECIFIED" - Should never be used."INTENT" - Intent coverage."PAGE_TRANSITION" - Page transition coverage."TRANSITION_ROUTE_GROUP" - Transition route group coverage.

typeProjectsLocationsAgentsTestCasesCreateCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesCreateCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesCreateCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TestCase.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesCreateCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesCreateCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesExportCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesExportCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesExportCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesExportCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesExportCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesGetCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesGetCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesGetCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TestCase.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesGetCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesGetCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesGetCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsTestCasesImportCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesImportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesImportCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesImportCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.import" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesImportCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesImportCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesListCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesListCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesListCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListTestCasesResponse.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesListCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesListCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesListCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsTestCasesListCall)PageSizeadded inv0.37.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20. Note that when TestCaseView =FULL, the maximum page size allowed is 20. When TestCaseView = BASIC, themaximum page size allowed is 500.

func (*ProjectsLocationsAgentsTestCasesListCall)PageTokenadded inv0.37.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsTestCasesListCall)Pagesadded inv0.37.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

func (*ProjectsLocationsAgentsTestCasesListCall)Viewadded inv0.37.0

View sets the optional parameter "view": Specifies whether response shouldinclude all fields or just the metadata.

Possible values:

"TEST_CASE_VIEW_UNSPECIFIED" - The default / unset value. The API will

default to the BASIC view.

"BASIC" - Include basic metadata about the test case, but not the

conversation turns. This is the default value.

"FULL" - Include everything.

typeProjectsLocationsAgentsTestCasesPatchCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesPatchCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesPatchCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TestCase.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesPatchCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesPatchCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesPatchCall)UpdateMaskadded inv0.37.0

UpdateMask sets the optional parameter "updateMask": Required. The mask tospecify which fields should be updated. The `creationTime` and`lastTestResult` cannot be updated.

typeProjectsLocationsAgentsTestCasesResultsGetCalladded inv0.43.0

type ProjectsLocationsAgentsTestCasesResultsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesResultsGetCall)Contextadded inv0.43.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesResultsGetCall)Doadded inv0.43.0

Do executes the "dialogflow.projects.locations.agents.testCases.results.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TestCaseResult.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesResultsGetCall)Fieldsadded inv0.43.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesResultsGetCall)Headeradded inv0.43.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesResultsGetCall)IfNoneMatchadded inv0.43.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsTestCasesResultsListCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesResultsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.results.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListTestCaseResultsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Filteradded inv0.37.0

Filter sets the optional parameter "filter": The filter expression used tofilter test case results. See API Filtering (https://aip.dev/160). Theexpression is case insensitive. Only 'AND' is supported for logicaloperators. The supported syntax is listed below in detail: [AND ] ... [ANDlatest] The supported fields and operators are: field operator `environment``=`, `IN` (Use value `draft` for draft environment) `test_time` `>`, `<``latest` only returns the latest test result in all results for each testcase. Examples: * "environment=draft AND latest" matches the latest testresult for each test case in the draft environment. * "environment IN(e1,e2)" matches any test case results with an environment resource name ofeither "e1" or "e2". * "test_time > 1602540713" matches any test caseresults with test time later than a unix timestamp in seconds 1602540713.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)PageSizeadded inv0.37.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)PageTokenadded inv0.37.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsTestCasesResultsListCall)Pagesadded inv0.37.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsTestCasesResultsServiceadded inv0.37.0

type ProjectsLocationsAgentsTestCasesResultsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsTestCasesResultsServiceadded inv0.37.0

func NewProjectsLocationsAgentsTestCasesResultsService(s *Service) *ProjectsLocationsAgentsTestCasesResultsService

func (*ProjectsLocationsAgentsTestCasesResultsService)Getadded inv0.43.0

Get: Gets a test case result.

  • name: The name of the testcase. Format:`projects//locations//agents//testCases//results/`.

func (*ProjectsLocationsAgentsTestCasesResultsService)Listadded inv0.37.0

List: Fetches the list of run results for the given test case. A maximum of100 results are kept for each test case.

  • parent: The test case to list results for. Format:`projects//locations//agents//testCases/`. Specify a `-` as a wildcard forTestCase ID to list results across multiple test cases.

typeProjectsLocationsAgentsTestCasesRunCalladded inv0.37.0

type ProjectsLocationsAgentsTestCasesRunCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTestCasesRunCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTestCasesRunCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.testCases.run" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTestCasesRunCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTestCasesRunCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTestCasesServiceadded inv0.37.0

type ProjectsLocationsAgentsTestCasesService struct {Results *ProjectsLocationsAgentsTestCasesResultsService// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsTestCasesServiceadded inv0.37.0

func NewProjectsLocationsAgentsTestCasesService(s *Service) *ProjectsLocationsAgentsTestCasesService

func (*ProjectsLocationsAgentsTestCasesService)BatchDeleteadded inv0.37.0

BatchDelete: Batch deletes test cases.

  • parent: The agent to delete test cases from. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)BatchRunadded inv0.37.0

BatchRun: Kicks off a batch run of test cases. This method is a long-runningoperation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: BatchRunTestCasesMetadata - `response`:BatchRunTestCasesResponse

- parent: Agent name. Format: `projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)CalculateCoverageadded inv0.37.0

CalculateCoverage: Calculates the test coverage for an agent.

  • agent: The agent to calculate coverage for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)Createadded inv0.37.0

Create: Creates a test case for the given agent.

  • parent: The agent to create the test case for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)Exportadded inv0.37.0

Export: Exports the test cases under the agent to a Cloud Storage bucket ora local file. Filter can be applied to export a subset of test cases. Thismethod is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: ExportTestCasesMetadata - `response`: ExportTestCasesResponse

  • parent: The agent where to export test cases from. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)Getadded inv0.37.0

Get: Gets a test case.

  • name: The name of the testcase. Format:`projects//locations//agents//testCases/`.

func (*ProjectsLocationsAgentsTestCasesService)Importadded inv0.37.0

Import: Imports the test cases from a Cloud Storage bucket or a local file.It always creates new test cases and won't overwrite any existing ones. Theprovided ID in the imported test case is neglected. This method is along-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: ImportTestCasesMetadata - `response`: ImportTestCasesResponse

  • parent: The agent to import test cases to. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)Listadded inv0.37.0

List: Fetches a list of test cases for a given agent.

  • parent: The agent to list all pages for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsTestCasesService)Patchadded inv0.37.0

Patch: Updates the specified test case.

  • name: The unique identifier of the test case. TestCases.CreateTestCasewill populate the name automatically. Otherwise use format:`projects//locations//agents//testCases/`.

func (*ProjectsLocationsAgentsTestCasesService)Runadded inv0.37.0

Run: Kicks off a test case run. This method is a long-running operation(https://cloud.google.com/dialogflow/cx/docs/how/long-running-operation).The returned `Operation` type has the following method-specific fields: -`metadata`: RunTestCaseMetadata - `response`: RunTestCaseResponse

  • name: Format of test case name to run:`projects//locations//agents//testCases/`.

typeProjectsLocationsAgentsToolsCreateCalladded inv0.185.0

type ProjectsLocationsAgentsToolsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsCreateCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsCreateCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Tool.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsCreateCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsCreateCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsDeleteCalladded inv0.185.0

type ProjectsLocationsAgentsToolsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsDeleteCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsDeleteCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsToolsDeleteCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsDeleteCall)Forceadded inv0.185.0

Force sets the optional parameter "force": This field has no effect forTools not being used. For Tools that are used: * If `force` is set to false,an error will be returned with message indicating the referenced resources.* If `force` is set to true, Dialogflow will remove the tool, as well as anyreferences to the tool.

func (*ProjectsLocationsAgentsToolsDeleteCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsExportCalladded inv0.185.0

type ProjectsLocationsAgentsToolsExportCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsExportCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsExportCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.export" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsExportCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsExportCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsGetCalladded inv0.185.0

type ProjectsLocationsAgentsToolsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsGetCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsGetCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Tool.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsGetCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsGetCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsToolsGetCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsToolsListCalladded inv0.185.0

type ProjectsLocationsAgentsToolsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsListCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsListCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListToolsResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsListCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsListCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsToolsListCall)IfNoneMatchadded inv0.185.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsToolsListCall)PageSizeadded inv0.185.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsToolsListCall)PageTokenadded inv0.185.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsToolsListCall)Pagesadded inv0.185.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsToolsPatchCalladded inv0.185.0

type ProjectsLocationsAgentsToolsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsPatchCall)Contextadded inv0.185.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsPatchCall)Doadded inv0.185.0

Do executes the "dialogflow.projects.locations.agents.tools.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Tool.ServerResponse.Header or (if a responsewas returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsPatchCall)Fieldsadded inv0.185.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsPatchCall)Headeradded inv0.185.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsToolsPatchCall)UpdateMaskadded inv0.185.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsToolsServiceadded inv0.185.0

type ProjectsLocationsAgentsToolsService struct {Versions *ProjectsLocationsAgentsToolsVersionsService// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsToolsServiceadded inv0.185.0

func NewProjectsLocationsAgentsToolsService(s *Service) *ProjectsLocationsAgentsToolsService

func (*ProjectsLocationsAgentsToolsService)Createadded inv0.185.0

Create: Creates a Tool in the specified agent.

  • parent: The agent to create a Tool for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsToolsService)Deleteadded inv0.185.0

Delete: Deletes a specified Tool.

  • name: The name of the Tool to be deleted. Format:`projects//locations//agents//tools/`.

func (*ProjectsLocationsAgentsToolsService)Exportadded inv0.185.0

Export: Exports the selected tools.

  • parent: The agent to export tools from. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsToolsService)Getadded inv0.185.0

Get: Retrieves the specified Tool.

- name: The name of the Tool. Format: `projects//locations//agents//tools/`.

func (*ProjectsLocationsAgentsToolsService)Listadded inv0.185.0

List: Returns a list of Tools in the specified agent.

  • parent: The agent to list the Tools from. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsToolsService)Patchadded inv0.185.0

Patch: Update the specified Tool.

  • name: The unique identifier of the Tool. Format:`projects//locations//agents//tools/`.

typeProjectsLocationsAgentsToolsVersionsCreateCalladded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsVersionsCreateCall)Contextadded inv0.225.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsVersionsCreateCall)Doadded inv0.225.0

Do executes the "dialogflow.projects.locations.agents.tools.versions.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ToolVersion.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsVersionsCreateCall)Fieldsadded inv0.225.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsVersionsCreateCall)Headeradded inv0.225.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsVersionsDeleteCalladded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsVersionsDeleteCall)Contextadded inv0.225.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsVersionsDeleteCall)Doadded inv0.225.0

Do executes the "dialogflow.projects.locations.agents.tools.versions.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsToolsVersionsDeleteCall)Fieldsadded inv0.225.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsVersionsDeleteCall)Forceadded inv0.225.0

Force sets the optional parameter "force": This field has no effect forTools not being used. For Tools that are used: * If `force` is set to false,an error will be returned with message indicating the referenced resources.* If `force` is set to true, Dialogflow will remove the tool, as well as anyreferences to the tool.

func (*ProjectsLocationsAgentsToolsVersionsDeleteCall)Headeradded inv0.225.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsVersionsGetCalladded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsVersionsGetCall)Contextadded inv0.225.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsVersionsGetCall)Doadded inv0.225.0

Do executes the "dialogflow.projects.locations.agents.tools.versions.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ToolVersion.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsVersionsGetCall)Fieldsadded inv0.225.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsVersionsGetCall)Headeradded inv0.225.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsToolsVersionsGetCall)IfNoneMatchadded inv0.225.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsToolsVersionsListCalladded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsVersionsListCall)Contextadded inv0.225.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsVersionsListCall)Doadded inv0.225.0

Do executes the "dialogflow.projects.locations.agents.tools.versions.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListToolVersionsResponse.ServerResponse.Header

or (if a response was returned at all) in error.(*googleapi.Error).Header.

Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsVersionsListCall)Fieldsadded inv0.225.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsVersionsListCall)Headeradded inv0.225.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsToolsVersionsListCall)IfNoneMatchadded inv0.225.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsToolsVersionsListCall)PageSizeadded inv0.225.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsToolsVersionsListCall)PageTokenadded inv0.225.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsToolsVersionsListCall)Pagesadded inv0.225.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsToolsVersionsRestoreCalladded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsRestoreCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsToolsVersionsRestoreCall)Contextadded inv0.225.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsToolsVersionsRestoreCall)Doadded inv0.225.0

Do executes the "dialogflow.projects.locations.agents.tools.versions.restore" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1RestoreToolVersionResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsToolsVersionsRestoreCall)Fieldsadded inv0.225.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsToolsVersionsRestoreCall)Headeradded inv0.225.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsToolsVersionsServiceadded inv0.225.0

type ProjectsLocationsAgentsToolsVersionsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsToolsVersionsServiceadded inv0.225.0

func NewProjectsLocationsAgentsToolsVersionsService(s *Service) *ProjectsLocationsAgentsToolsVersionsService

func (*ProjectsLocationsAgentsToolsVersionsService)Createadded inv0.225.0

Create: Creates a version for the specified Tool.

  • parent: The tool to create a version for. Format:`projects//locations//agents//tools/`.

func (*ProjectsLocationsAgentsToolsVersionsService)Deleteadded inv0.225.0

Delete: Deletes the specified version of the Tool.

  • name: The name of the tool version to delete. Format:`projects//locations//agents//tools//versions/`.

func (*ProjectsLocationsAgentsToolsVersionsService)Getadded inv0.225.0

Get: Retrieves the specified version of the Tool.

  • name: The name of the tool version. Format:`projects//locations//agents//tools//versions/`.

func (*ProjectsLocationsAgentsToolsVersionsService)Listadded inv0.225.0

List: List versions of the specified Tool.

  • parent: The parent of the tool versions. Format:`projects//locations//agents//tools/`.

func (*ProjectsLocationsAgentsToolsVersionsService)Restoreadded inv0.225.0

Restore: Retrieves the specified version of the Tool and stores it as thecurrent tool draft, returning the tool with resources updated.

  • name: The name of the tool version. Format:`projects//locations//agents//tools//versions/`.

typeProjectsLocationsAgentsTransitionRouteGroupsCreateCalladded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTransitionRouteGroupsCreateCall)Contextadded inv0.137.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTransitionRouteGroupsCreateCall)Doadded inv0.137.0

Do executes the "dialogflow.projects.locations.agents.transitionRouteGroups.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTransitionRouteGroupsCreateCall)Fieldsadded inv0.137.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTransitionRouteGroupsCreateCall)Headeradded inv0.137.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsCreateCall)LanguageCodeadded inv0.137.0

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `TransitionRouteGroup`: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsTransitionRouteGroupsDeleteCalladded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall)Contextadded inv0.137.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall)Doadded inv0.137.0

Do executes the "dialogflow.projects.locations.agents.transitionRouteGroups.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall)Fieldsadded inv0.137.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall)Forceadded inv0.137.0

Force sets the optional parameter "force": This field has no effect fortransition route group that no page is using. If the transition route groupis referenced by any page: * If `force` is set to false, an error will bereturned with message indicating pages that reference the transition routegroup. * If `force` is set to true, Dialogflow will remove the transitionroute group, as well as any reference to it.

func (*ProjectsLocationsAgentsTransitionRouteGroupsDeleteCall)Headeradded inv0.137.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsTransitionRouteGroupsGetCalladded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)Contextadded inv0.137.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)Doadded inv0.137.0

Do executes the "dialogflow.projects.locations.agents.transitionRouteGroups.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)Fieldsadded inv0.137.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)Headeradded inv0.137.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)IfNoneMatchadded inv0.137.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsGetCall)LanguageCodeadded inv0.137.0

LanguageCode sets the optional parameter "languageCode": The language toretrieve the transition route group for. The following fields are languagedependent: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

typeProjectsLocationsAgentsTransitionRouteGroupsListCalladded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)Contextadded inv0.137.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)Doadded inv0.137.0

Do executes the "dialogflow.projects.locations.agents.transitionRouteGroups.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)Fieldsadded inv0.137.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)Headeradded inv0.137.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)IfNoneMatchadded inv0.137.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)LanguageCodeadded inv0.137.0

LanguageCode sets the optional parameter "languageCode": The language tolist transition route groups for. The following fields are languagedependent: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)PageSizeadded inv0.137.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)PageTokenadded inv0.137.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsListCall)Pagesadded inv0.137.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsTransitionRouteGroupsPatchCalladded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)Contextadded inv0.137.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)Doadded inv0.137.0

Do executes the "dialogflow.projects.locations.agents.transitionRouteGroups.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)Fieldsadded inv0.137.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)Headeradded inv0.137.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)LanguageCodeadded inv0.137.0

LanguageCode sets the optional parameter "languageCode": The language of thefollowing fields in `TransitionRouteGroup`: *`TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` *`TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. Many languages(https://cloud.google.com/dialogflow/cx/docs/reference/language) aresupported. Note: languages must be enabled in the agent before they can beused.

func (*ProjectsLocationsAgentsTransitionRouteGroupsPatchCall)UpdateMaskadded inv0.137.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated.

typeProjectsLocationsAgentsTransitionRouteGroupsServiceadded inv0.137.0

type ProjectsLocationsAgentsTransitionRouteGroupsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsAgentsTransitionRouteGroupsServiceadded inv0.137.0

func NewProjectsLocationsAgentsTransitionRouteGroupsService(s *Service) *ProjectsLocationsAgentsTransitionRouteGroupsService

func (*ProjectsLocationsAgentsTransitionRouteGroupsService)Createadded inv0.137.0

Create: Creates an TransitionRouteGroup in the specified flow. Note: Youshould always train a flow prior to sending it queries. See the trainingdocumentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • parent: The flow to create an TransitionRouteGroup for. Format:`projects//locations//agents//flows/` or `projects//locations//agents/`for agent-level groups.

func (*ProjectsLocationsAgentsTransitionRouteGroupsService)Deleteadded inv0.137.0

Delete: Deletes the specified TransitionRouteGroup. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The name of the TransitionRouteGroup to delete. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/`.

func (*ProjectsLocationsAgentsTransitionRouteGroupsService)Getadded inv0.137.0

Get: Retrieves the specified TransitionRouteGroup.

  • name: The name of the TransitionRouteGroup. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/`.

func (*ProjectsLocationsAgentsTransitionRouteGroupsService)Listadded inv0.137.0

List: Returns the list of all transition route groups in the specified flow.

  • parent: The flow to list all transition route groups for. Format:`projects//locations//agents//flows/` or `projects//locations//agents/.

func (*ProjectsLocationsAgentsTransitionRouteGroupsService)Patchadded inv0.137.0

Patch: Updates the specified TransitionRouteGroup. Note: You should alwaystrain a flow prior to sending it queries. See the training documentation(https://cloud.google.com/dialogflow/cx/docs/concept/training).

  • name: The unique identifier of the transition route group.TransitionRouteGroups.CreateTransitionRouteGroup populates the nameautomatically. Format:`projects//locations//agents//flows//transitionRouteGroups/` or`projects//locations//agents//transitionRouteGroups/` for agent-levelgroups.

typeProjectsLocationsAgentsUpdateGenerativeSettingsCalladded inv0.139.0

type ProjectsLocationsAgentsUpdateGenerativeSettingsCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsUpdateGenerativeSettingsCall)Contextadded inv0.139.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsUpdateGenerativeSettingsCall)Doadded inv0.139.0

Do executes the "dialogflow.projects.locations.agents.updateGenerativeSettings" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1GenerativeSettings.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsUpdateGenerativeSettingsCall)Fieldsadded inv0.139.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsUpdateGenerativeSettingsCall)Headeradded inv0.139.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsUpdateGenerativeSettingsCall)UpdateMaskadded inv0.139.0

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsValidateCalladded inv0.37.0

type ProjectsLocationsAgentsValidateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsValidateCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsValidateCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.agents.validate" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1AgentValidationResult.ServerResponse.Headeror (if a response was returned at all) in error.(*googleapi.Error).Header.Use googleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsValidateCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsValidateCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsWebhooksCreateCall

type ProjectsLocationsAgentsWebhooksCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsWebhooksCreateCall)Do

Do executes the "dialogflow.projects.locations.agents.webhooks.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Webhook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsWebhooksCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsWebhooksCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsWebhooksDeleteCall

type ProjectsLocationsAgentsWebhooksDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsWebhooksDeleteCall)Do

Do executes the "dialogflow.projects.locations.agents.webhooks.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsAgentsWebhooksDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsWebhooksDeleteCall)Force

Force sets the optional parameter "force": This field has no effect forwebhook not being used. For webhooks that are used by pages/flows/transitionroute groups: * If `force` is set to false, an error will be returned withmessage indicating the referenced resources. * If `force` is set to true,Dialogflow will remove the webhook, as well as any references to the webhook(i.e. Webhook and tagin fulfillments that point to this webhook will beremoved).

func (*ProjectsLocationsAgentsWebhooksDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsAgentsWebhooksGetCall

type ProjectsLocationsAgentsWebhooksGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsWebhooksGetCall)Do

Do executes the "dialogflow.projects.locations.agents.webhooks.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Webhook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsWebhooksGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsWebhooksGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsWebhooksGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsAgentsWebhooksListCall

type ProjectsLocationsAgentsWebhooksListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsWebhooksListCall)Do

Do executes the "dialogflow.projects.locations.agents.webhooks.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListWebhooksResponse.ServerResponse.Header or(if a response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsWebhooksListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsWebhooksListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsWebhooksListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsAgentsWebhooksListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 100 and at most 1000.

func (*ProjectsLocationsAgentsWebhooksListCall)PageToken

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsAgentsWebhooksListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsAgentsWebhooksPatchCall

type ProjectsLocationsAgentsWebhooksPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsAgentsWebhooksPatchCall)Do

Do executes the "dialogflow.projects.locations.agents.webhooks.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1Webhook.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsAgentsWebhooksPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsAgentsWebhooksPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsAgentsWebhooksPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The mask to controlwhich fields get updated. If the mask is not present, all fields will beupdated.

typeProjectsLocationsAgentsWebhooksService

type ProjectsLocationsAgentsWebhooksService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsAgentsWebhooksService)Create

Create: Creates a webhook in the specified agent.

  • parent: The agent to create a webhook for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsWebhooksService)Delete

Delete: Deletes the specified webhook.

  • name: The name of the webhook to delete. Format:`projects//locations//agents//webhooks/`.

func (*ProjectsLocationsAgentsWebhooksService)Get

Get: Retrieves the specified webhook.

  • name: The name of the webhook. Format:`projects//locations//agents//webhooks/`.

func (*ProjectsLocationsAgentsWebhooksService)List

List: Returns the list of all webhooks in the specified agent.

  • parent: The agent to list all webhooks for. Format:`projects//locations//agents/`.

func (*ProjectsLocationsAgentsWebhooksService)Patch

Patch: Updates the specified webhook.

  • name: The unique identifier of the webhook. Required for theWebhooks.UpdateWebhook method. Webhooks.CreateWebhook populates the nameautomatically. Format: `projects//locations//agents//webhooks/`.

typeProjectsLocationsGetCalladded inv0.53.0

type ProjectsLocationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsGetCall)Contextadded inv0.53.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsGetCall)Doadded inv0.53.0

Do executes the "dialogflow.projects.locations.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudLocationLocation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsGetCall)Fieldsadded inv0.53.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsGetCall)Headeradded inv0.53.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsGetCall)IfNoneMatchadded inv0.53.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsListCalladded inv0.53.0

type ProjectsLocationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsListCall)Contextadded inv0.53.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsListCall)Doadded inv0.53.0

Do executes the "dialogflow.projects.locations.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudLocationListLocationsResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsListCall)ExtraLocationTypesadded inv0.229.0

func (c *ProjectsLocationsListCall) ExtraLocationTypes(extraLocationTypes ...string) *ProjectsLocationsListCall

ExtraLocationTypes sets the optional parameter "extraLocationTypes": Do notuse this field. It is unsupported and is ignored unless explicitlydocumented otherwise. This is primarily for internal usage.

func (*ProjectsLocationsListCall)Fieldsadded inv0.53.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsListCall)Filteradded inv0.53.0

Filter sets the optional parameter "filter": A filter to narrow down resultsto a preferred subset. The filtering language accepts strings like"displayName=tokyo", and is documented in more detail in AIP-160(https://google.aip.dev/160).

func (*ProjectsLocationsListCall)Headeradded inv0.53.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsListCall)IfNoneMatchadded inv0.53.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsListCall)PageSizeadded inv0.53.0

PageSize sets the optional parameter "pageSize": The maximum number ofresults to return. If not set, the service selects a default.

func (*ProjectsLocationsListCall)PageTokenadded inv0.53.0

PageToken sets the optional parameter "pageToken": A page token receivedfrom the `next_page_token` field in the response. Send that page token toreceive the subsequent page.

func (*ProjectsLocationsListCall)Pagesadded inv0.53.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsOperationsCancelCall

type ProjectsLocationsOperationsCancelCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsCancelCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsCancelCall)Do

Do executes the "dialogflow.projects.locations.operations.cancel" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsOperationsCancelCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsCancelCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsOperationsGetCall

type ProjectsLocationsOperationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsGetCall)Do

Do executes the "dialogflow.projects.locations.operations.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsOperationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsOperationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsOperationsListCall

type ProjectsLocationsOperationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsOperationsListCall)Do

Do executes the "dialogflow.projects.locations.operations.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningListOperationsResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsOperationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsOperationsListCall)Filter

Filter sets the optional parameter "filter": The standard list filter.

func (*ProjectsLocationsOperationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsOperationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsOperationsListCall)PageSize

PageSize sets the optional parameter "pageSize": The standard list pagesize.

func (*ProjectsLocationsOperationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The standard list pagetoken.

func (*ProjectsLocationsOperationsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

func (*ProjectsLocationsOperationsListCall)ReturnPartialSuccessadded inv0.252.0

func (c *ProjectsLocationsOperationsListCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsLocationsOperationsListCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess":When set to `true`, operations that are reachable are returned as normal,and those that are unreachable are returned in the[ListOperationsResponse.unreachable] field. This can only be `true` whenreading across collections e.g. when `parent` is set to"projects/example/locations/-". This field is not by default supported andwill result in an `UNIMPLEMENTED` error if set unless explicitly documentedotherwise in service or product specific documentation.

typeProjectsLocationsOperationsService

type ProjectsLocationsOperationsService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsOperationsService)Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. Theserver makes a best effort to cancel the operation, but success is notguaranteed. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation orother methods to check whether the cancellation succeeded or whether theoperation completed despite cancellation. On successful cancellation, theoperation is not deleted; instead, it becomes an operation with anOperation.error value with a google.rpc.Status.code of `1`, corresponding to`Code.CANCELLED`.

- name: The name of the operation resource to be cancelled.

func (*ProjectsLocationsOperationsService)Get

Get: Gets the latest state of a long-running operation. Clients can use thismethod to poll the operation result at intervals as recommended by the APIservice.

- name: The name of the operation resource.

func (*ProjectsLocationsOperationsService)List

List: Lists operations that match the specified filter in the request. Ifthe server doesn't support this method, it returns `UNIMPLEMENTED`.

- name: The name of the operation's parent resource.

typeProjectsLocationsSecuritySettingsCreateCalladded inv0.37.0

type ProjectsLocationsSecuritySettingsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsSecuritySettingsCreateCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsSecuritySettingsCreateCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.securitySettings.create" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SecuritySettings.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsSecuritySettingsCreateCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsSecuritySettingsCreateCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsSecuritySettingsDeleteCalladded inv0.37.0

type ProjectsLocationsSecuritySettingsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsSecuritySettingsDeleteCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsSecuritySettingsDeleteCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.securitySettings.delete" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsSecuritySettingsDeleteCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsSecuritySettingsDeleteCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsSecuritySettingsGetCalladded inv0.37.0

type ProjectsLocationsSecuritySettingsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsSecuritySettingsGetCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsSecuritySettingsGetCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.securitySettings.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SecuritySettings.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsSecuritySettingsGetCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsSecuritySettingsGetCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsSecuritySettingsGetCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsSecuritySettingsListCalladded inv0.37.0

type ProjectsLocationsSecuritySettingsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsSecuritySettingsListCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsSecuritySettingsListCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.securitySettings.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1ListSecuritySettingsResponse.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsSecuritySettingsListCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsSecuritySettingsListCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsSecuritySettingsListCall)IfNoneMatchadded inv0.37.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsSecuritySettingsListCall)PageSizeadded inv0.37.0

PageSize sets the optional parameter "pageSize": The maximum number of itemsto return in a single page. By default 20 and at most 100.

func (*ProjectsLocationsSecuritySettingsListCall)PageTokenadded inv0.37.0

PageToken sets the optional parameter "pageToken": The next_page_token valuereturned from a previous list request.

func (*ProjectsLocationsSecuritySettingsListCall)Pagesadded inv0.37.0

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

typeProjectsLocationsSecuritySettingsPatchCalladded inv0.37.0

type ProjectsLocationsSecuritySettingsPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsSecuritySettingsPatchCall)Contextadded inv0.37.0

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsSecuritySettingsPatchCall)Doadded inv0.37.0

Do executes the "dialogflow.projects.locations.securitySettings.patch" call.Any non-2xx status code is an error. Response headers are in either*GoogleCloudDialogflowCxV3beta1SecuritySettings.ServerResponse.Header or (ifa response was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsSecuritySettingsPatchCall)Fieldsadded inv0.37.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsSecuritySettingsPatchCall)Headeradded inv0.37.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsSecuritySettingsPatchCall)UpdateMaskadded inv0.37.0

UpdateMask sets the optional parameter "updateMask": Required. The mask tocontrol which fields get updated. If the mask is not present, all fieldswill be updated.

typeProjectsLocationsSecuritySettingsServiceadded inv0.37.0

type ProjectsLocationsSecuritySettingsService struct {// contains filtered or unexported fields}

funcNewProjectsLocationsSecuritySettingsServiceadded inv0.37.0

func NewProjectsLocationsSecuritySettingsService(s *Service) *ProjectsLocationsSecuritySettingsService

func (*ProjectsLocationsSecuritySettingsService)Createadded inv0.37.0

Create: Create security settings in the specified location.

  • parent: The location to create an SecuritySettings for. Format:`projects//locations/`.

func (*ProjectsLocationsSecuritySettingsService)Deleteadded inv0.37.0

Delete: Deletes the specified SecuritySettings.

  • name: The name of the SecuritySettings to delete. Format:`projects//locations//securitySettings/`.

func (*ProjectsLocationsSecuritySettingsService)Getadded inv0.37.0

Get: Retrieves the specified SecuritySettings. The returned settings may bestale by up to 1 minute.

  • name: Resource name of the settings. Format:`projects//locations//securitySettings/`.

func (*ProjectsLocationsSecuritySettingsService)Listadded inv0.37.0

List: Returns the list of all security settings in the specified location.

  • parent: The location to list all security settings for. Format:`projects//locations/`.

func (*ProjectsLocationsSecuritySettingsService)Patchadded inv0.37.0

Patch: Updates the specified SecuritySettings.

  • name: Resource name of the settings. Required for theSecuritySettingsService.UpdateSecuritySettings method.SecuritySettingsService.CreateSecuritySettings populates the nameautomatically. Format: `projects//locations//securitySettings/`.

typeProjectsLocationsService

type ProjectsLocationsService struct {Agents *ProjectsLocationsAgentsServiceOperations *ProjectsLocationsOperationsServiceSecuritySettings *ProjectsLocationsSecuritySettingsService// contains filtered or unexported fields}

funcNewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

func (*ProjectsLocationsService)Getadded inv0.53.0

Get: Gets information about a location.

- name: Resource name for the location.

func (*ProjectsLocationsService)Listadded inv0.53.0

List: Lists information about the supported locations for this service.

- name: The resource that owns the locations collection, if applicable.

typeProjectsOperationsCancelCall

type ProjectsOperationsCancelCall struct {// contains filtered or unexported fields}

func (*ProjectsOperationsCancelCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsOperationsCancelCall)Do

Do executes the "dialogflow.projects.operations.cancel" call.Any non-2xx status code is an error. Response headers are in either*GoogleProtobufEmpty.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsOperationsCancelCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsOperationsCancelCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsOperationsGetCall

type ProjectsOperationsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsOperationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsOperationsGetCall)Do

Do executes the "dialogflow.projects.operations.get" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningOperation.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsOperationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsOperationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsOperationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsOperationsListCall

type ProjectsOperationsListCall struct {// contains filtered or unexported fields}

func (*ProjectsOperationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsOperationsListCall)Do

Do executes the "dialogflow.projects.operations.list" call.Any non-2xx status code is an error. Response headers are in either*GoogleLongrunningListOperationsResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsOperationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsOperationsListCall)Filter

Filter sets the optional parameter "filter": The standard list filter.

func (*ProjectsOperationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsOperationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsOperationsListCall)PageSize

PageSize sets the optional parameter "pageSize": The standard list pagesize.

func (*ProjectsOperationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The standard list pagetoken.

func (*ProjectsOperationsListCall)Pages

Pages invokes f for each page of results.A non-nil error returned from f will halt the iteration.The provided context supersedes any context provided to the Context method.

func (*ProjectsOperationsListCall)ReturnPartialSuccessadded inv0.252.0

func (c *ProjectsOperationsListCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsOperationsListCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess":When set to `true`, operations that are reachable are returned as normal,and those that are unreachable are returned in the[ListOperationsResponse.unreachable] field. This can only be `true` whenreading across collections e.g. when `parent` is set to"projects/example/locations/-". This field is not by default supported andwill result in an `UNIMPLEMENTED` error if set unless explicitly documentedotherwise in service or product specific documentation.

typeProjectsOperationsService

type ProjectsOperationsService struct {// contains filtered or unexported fields}

funcNewProjectsOperationsService

func NewProjectsOperationsService(s *Service) *ProjectsOperationsService

func (*ProjectsOperationsService)Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. Theserver makes a best effort to cancel the operation, but success is notguaranteed. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation orother methods to check whether the cancellation succeeded or whether theoperation completed despite cancellation. On successful cancellation, theoperation is not deleted; instead, it becomes an operation with anOperation.error value with a google.rpc.Status.code of `1`, corresponding to`Code.CANCELLED`.

- name: The name of the operation resource to be cancelled.

func (*ProjectsOperationsService)Get

Get: Gets the latest state of a long-running operation. Clients can use thismethod to poll the operation result at intervals as recommended by the APIservice.

- name: The name of the operation resource.

func (*ProjectsOperationsService)List

List: Lists operations that match the specified filter in the request. Ifthe server doesn't support this method, it returns `UNIMPLEMENTED`.

- name: The name of the operation's parent resource.

typeProjectsService

type ProjectsService struct {Locations *ProjectsLocationsServiceOperations *ProjectsOperationsService// contains filtered or unexported fields}

funcNewProjectsService

func NewProjectsService(s *Service) *ProjectsService

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentProjects *ProjectsService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

New creates a new Service. It uses the provided http.Client for requests.

Deprecated: please use NewService instead.To provide a custom HTTP client, use option.WithHTTPClient.If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.

funcNewService

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp