Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FormParameter

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1FormParameter

Returns a new instance of GoogleCloudDialogflowCxV3beta1FormParameter.



10687
10688
10689
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10687

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Corresponds to the JSON property advancedSettings



10647
10648
10649
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10647

def advanced_settings
  @advanced_settings
end

#default_valueObject

Corresponds to the JSON property defaultValue

Returns:

  • (Object)


10652
10653
10654
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10652

def default_value
  @default_value
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


10657
10658
10659
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10657

def display_name
  @display_name
end

#entity_typeString

Corresponds to the JSON property entityType

Returns:

  • (String)


10662
10663
10664
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10662

def entity_type
  @entity_type
end

#fill_behaviorGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior

Corresponds to the JSON property fillBehavior



10667
10668
10669
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10667

def fill_behavior
  @fill_behavior
end

#is_listBoolean Also known as: is_list?

Corresponds to the JSON property isList

Returns:

  • (Boolean)


10672
10673
10674
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10672

def is_list
  @is_list
end

#redactBoolean Also known as: redact?

Corresponds to the JSON property redact

Returns:

  • (Boolean)


10678
10679
10680
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10678

def redact
  @redact
end

#requiredBoolean Also known as: required?

Corresponds to the JSON property required

Returns:

  • (Boolean)


10684
10685
10686
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10684

def required
  @required
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10692
10693
10694
10695
10696
10697
10698
10699
10700
10701
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10692

def update!(**args)
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
  @default_value = args[:default_value] if args.key?(:default_value)
  @display_name = args[:display_name] if args.key?(:display_name)
  @entity_type = args[:entity_type] if args.key?(:entity_type)
  @fill_behavior = args[:fill_behavior] if args.key?(:fill_behavior)
  @is_list = args[:is_list] if args.key?(:is_list)
  @redact = args[:redact] if args.key?(:redact)
  @required = args[:required] if args.key?(:required)
end