Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Environment

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Environment

Returns a new instance of GoogleCloudDialogflowCxV3beta1Environment.



6067
6068
6069
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6067

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

Instance Attribute Details

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


6035
6036
6037
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6035

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


6040
6041
6042
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6040

def display_name
  @display_name
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


6045
6046
6047
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6045

def name
  @name
end

#test_cases_configGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig

Corresponds to the JSON property testCasesConfig



6050
6051
6052
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6050

def test_cases_config
  @test_cases_config
end

#update_timeString

Corresponds to the JSON property updateTime

Returns:

  • (String)


6055
6056
6057
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6055

def update_time
  @update_time
end

#version_configsArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>

Corresponds to the JSON property versionConfigs



6060
6061
6062
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6060

def version_configs
  @version_configs
end

#webhook_configGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig

Corresponds to the JSON property webhookConfig



6065
6066
6067
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6065

def webhook_config
  @webhook_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6072
6073
6074
6075
6076
6077
6078
6079
6080
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6072

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
  @update_time = args[:update_time] if args.key?(:update_time)
  @version_configs = args[:version_configs] if args.key?(:version_configs)
  @webhook_config = args[:webhook_config] if args.key?(:webhook_config)
end