Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationDataset

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationDataset

Returns a new instance of GoogleCloudDialogflowV2ConversationDataset.



8427
8428
8429
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8427

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

Instance Attribute Details

#conversation_countFixnum

Corresponds to the JSON property conversationCount

Returns:

  • (Fixnum)


8383
8384
8385
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8383

def conversation_count
  @conversation_count
end

#conversation_infoGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo

Corresponds to the JSON property conversationInfo



8388
8389
8390
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8388

def conversation_info
  @conversation_info
end

#create_timeString

Corresponds to the JSON property createTime

Returns:

  • (String)


8393
8394
8395
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8393

def create_time
  @create_time
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


8398
8399
8400
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8398

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


8403
8404
8405
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8403

def display_name
  @display_name
end

#input_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig

Corresponds to the JSON property inputConfig



8408
8409
8410
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8408

def input_config
  @input_config
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


8413
8414
8415
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8413

def name
  @name
end

#satisfies_pziBoolean Also known as: satisfies_pzi?

Corresponds to the JSON property satisfiesPzi

Returns:

  • (Boolean)


8418
8419
8420
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8418

def satisfies_pzi
  @satisfies_pzi
end

#satisfies_pzsBoolean Also known as: satisfies_pzs?

Corresponds to the JSON property satisfiesPzs

Returns:

  • (Boolean)


8424
8425
8426
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8424

def satisfies_pzs
  @satisfies_pzs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8432
8433
8434
8435
8436
8437
8438
8439
8440
8441
8442
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8432

def update!(**args)
  @conversation_count = args[:conversation_count] if args.key?(:conversation_count)
  @conversation_info = args[:conversation_info] if args.key?(:conversation_info)
  @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)
  @input_config = args[:input_config] if args.key?(:input_config)
  @name = args[:name] if args.key?(:name)
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
end