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.



8441
8442
8443
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8441

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

Instance Attribute Details

#conversation_countFixnum

Corresponds to the JSON property conversationCount

Returns:

  • (Fixnum)


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

def conversation_count
  @conversation_count
end

#conversation_infoGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationInfo

Corresponds to the JSON property conversationInfo



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

def conversation_info
  @conversation_info
end

#create_timeString

Corresponds to the JSON property createTime

Returns:

  • (String)


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

def create_time
  @create_time
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


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

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


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

def display_name
  @display_name
end

#input_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2InputConfig

Corresponds to the JSON property inputConfig



8422
8423
8424
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8422

def input_config
  @input_config
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


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

def name
  @name
end

#satisfies_pziBoolean Also known as: satisfies_pzi?

Corresponds to the JSON property satisfiesPzi

Returns:

  • (Boolean)


8432
8433
8434
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8432

def satisfies_pzi
  @satisfies_pzi
end

#satisfies_pzsBoolean Also known as: satisfies_pzs?

Corresponds to the JSON property satisfiesPzs

Returns:

  • (Boolean)


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

def satisfies_pzs
  @satisfies_pzs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8446
8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8446

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