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.



8453
8454
8455
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8453

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

Instance Attribute Details

#conversation_countFixnum

Corresponds to the JSON property conversationCount

Returns:

  • (Fixnum)


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

def conversation_count
  @conversation_count
end

#conversation_infoGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo

Corresponds to the JSON property conversationInfo



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

def conversation_info
  @conversation_info
end

#create_timeString

Corresponds to the JSON property createTime

Returns:

  • (String)


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

def create_time
  @create_time
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


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

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


8429
8430
8431
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8429

def display_name
  @display_name
end

#input_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig

Corresponds to the JSON property inputConfig



8434
8435
8436
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8434

def input_config
  @input_config
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


8439
8440
8441
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8439

def name
  @name
end

#satisfies_pziBoolean Also known as: satisfies_pzi?

Corresponds to the JSON property satisfiesPzi

Returns:

  • (Boolean)


8444
8445
8446
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8444

def satisfies_pzi
  @satisfies_pzi
end

#satisfies_pzsBoolean Also known as: satisfies_pzs?

Corresponds to the JSON property satisfiesPzs

Returns:

  • (Boolean)


8450
8451
8452
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8450

def satisfies_pzs
  @satisfies_pzs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8458
8459
8460
8461
8462
8463
8464
8465
8466
8467
8468
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8458

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