Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1FormParameter

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1FormParameter

Returns a new instance of GoogleCloudDialogflowCxV3beta1FormParameter.



4374
4375
4376
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4374

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Corresponds to the JSON property advancedSettings



4334
4335
4336
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4334

def advanced_settings
  @advanced_settings
end

#default_valueObject

Corresponds to the JSON property defaultValue

Returns:

  • (Object)


4339
4340
4341
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4339

def default_value
  @default_value
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


4344
4345
4346
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4344

def display_name
  @display_name
end

#entity_typeString

Corresponds to the JSON property entityType

Returns:

  • (String)


4349
4350
4351
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4349

def entity_type
  @entity_type
end

#fill_behaviorGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior

Corresponds to the JSON property fillBehavior



4354
4355
4356
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4354

def fill_behavior
  @fill_behavior
end

#is_listBoolean Also known as: is_list?

Corresponds to the JSON property isList

Returns:

  • (Boolean)


4359
4360
4361
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4359

def is_list
  @is_list
end

#redactBoolean Also known as: redact?

Corresponds to the JSON property redact

Returns:

  • (Boolean)


4365
4366
4367
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4365

def redact
  @redact
end

#requiredBoolean Also known as: required?

Corresponds to the JSON property required

Returns:

  • (Boolean)


4371
4372
4373
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4371

def required
  @required
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4379

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