Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Example

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Example represents a sample execution of the playbook in the conversation. An example consists of a list of ordered actions performed by end user or Dialogflow agent according the playbook instructions to fulfill the task.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Example

Returns a new instance of GoogleCloudDialogflowCxV3beta1Example.



6595
6596
6597
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6595

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#actionsArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Action>

Required. The ordered list of actions performed by the end user and the Dialogflow agent. Corresponds to the JSON property actions



6537
6538
6539
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6537

def actions
  @actions
end

#conversation_stateString

Required. Example's output state. Corresponds to the JSON property conversationState

Returns:

  • (String)


6542
6543
6544
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6542

def conversation_state
  @conversation_state
end

#create_timeString

Output only. The timestamp of initial example creation. Corresponds to the JSON property createTime

Returns:

  • (String)


6547
6548
6549
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6547

def create_time
  @create_time
end

#descriptionString

Optional. The high level concise description of the example. The max number of characters is 200. Corresponds to the JSON property description

Returns:

  • (String)


6553
6554
6555
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6553

def description
  @description
end

#display_nameString

Required. The display name of the example. Corresponds to the JSON property displayName

Returns:

  • (String)


6558
6559
6560
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6558

def display_name
  @display_name
end

#language_codeString

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. Corresponds to the JSON property languageCode

Returns:

  • (String)


6566
6567
6568
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6566

def language_code
  @language_code
end

#nameString

The unique identifier of the playbook example. Format: projects//locations// agents//playbooks//examples/. Corresponds to the JSON property name

Returns:

  • (String)


6572
6573
6574
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6572

def name
  @name
end

#playbook_inputGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInput

Input of the playbook. Corresponds to the JSON property playbookInput



6577
6578
6579
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6577

def playbook_input
  @playbook_input
end

#playbook_outputGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookOutput

Output of the playbook. Corresponds to the JSON property playbookOutput



6582
6583
6584
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6582

def playbook_output
  @playbook_output
end

#token_countFixnum

Output only. Estimated number of tokes current example takes when sent to the LLM. Corresponds to the JSON property tokenCount

Returns:

  • (Fixnum)


6588
6589
6590
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6588

def token_count
  @token_count
end

#update_timeString

Output only. Last time the example was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


6593
6594
6595
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6593

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6600

def update!(**args)
  @actions = args[:actions] if args.key?(:actions)
  @conversation_state = args[:conversation_state] if args.key?(:conversation_state)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @language_code = args[:language_code] if args.key?(:language_code)
  @name = args[:name] if args.key?(:name)
  @playbook_input = args[:playbook_input] if args.key?(:playbook_input)
  @playbook_output = args[:playbook_output] if args.key?(:playbook_output)
  @token_count = args[:token_count] if args.key?(:token_count)
  @update_time = args[:update_time] if args.key?(:update_time)
end