Class: Google::Cloud::Dialogflow::V2::Intent::Parameter

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dialogflow/v2/intent.rb

Overview

Represents intent parameters.

Instance Attribute Summary collapse

Instance Attribute Details

#default_valueString

Returns 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.

Returns:

  • (String)

    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.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#display_nameString

Returns Required. The name of the parameter.

Returns:

  • (String)

    Required. The name of the parameter.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#entity_type_display_nameString

Returns Optional. The name of the entity type, prefixed with @, that describes values of the parameter. If the parameter is required, this must be provided.

Returns:

  • (String)

    Optional. The name of the entity type, prefixed with @, that describes values of the parameter. If the parameter is required, this must be provided.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#is_listBoolean

Returns Optional. Indicates whether the parameter represents a list of values.

Returns:

  • (Boolean)

    Optional. Indicates whether the parameter represents a list of values.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#mandatoryBoolean

Returns Optional. Indicates whether the parameter is required. That is, whether the intent cannot be completed without collecting the parameter value.

Returns:

  • (Boolean)

    Optional. Indicates whether the parameter is required. That is, whether the intent cannot be completed without collecting the parameter value.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#nameString

Returns The unique identifier of this parameter.

Returns:

  • (String)

    The unique identifier of this parameter.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#promptsArray<String>

Returns Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.

Returns:

  • (Array<String>)

    Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.



242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end

#valueString

Returns 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.

Returns:

  • (String)

    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.


242
243
244
245
# File 'proto_docs/google/cloud/dialogflow/v2/intent.rb', line 242

class Parameter
  include Google::Protobuf::MessageExts
  extend Google::Protobuf::MessageExts::ClassMethods
end