Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Version
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Version
- 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
-
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#description ⇒ String
Corresponds to the JSON property
description. -
#name ⇒ String
Corresponds to the JSON property
name. -
#status ⇒ String
Corresponds to the JSON property
status. -
#version_number ⇒ Fixnum
Corresponds to the JSON property
versionNumber.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Version
constructor
A new instance of GoogleCloudDialogflowV2beta1Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Version
Returns a new instance of GoogleCloudDialogflowV2beta1Version.
22049 22050 22051 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22049 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
22027 22028 22029 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22027 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
22032 22033 22034 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22032 def description @description end |
#name ⇒ String
Corresponds to the JSON property name
22037 22038 22039 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22037 def name @name end |
#status ⇒ String
Corresponds to the JSON property status
22042 22043 22044 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22042 def status @status end |
#version_number ⇒ Fixnum
Corresponds to the JSON property versionNumber
22047 22048 22049 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22047 def version_number @version_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22054 22055 22056 22057 22058 22059 22060 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 22054 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @status = args[:status] if args.key?(:status) @version_number = args[:version_number] if args.key?(:version_number) end |