Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#action ⇒ String
Corresponds to the JSON property
action. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#language_code ⇒ String
Corresponds to the JSON property
languageCode. -
#name ⇒ String
Corresponds to the JSON property
name. -
#resource ⇒ String
Corresponds to the JSON property
resource. -
#type ⇒ String
Corresponds to the JSON property
type. -
#user_email ⇒ String
Corresponds to the JSON property
userEmail.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Changelog
constructor
A new instance of GoogleCloudDialogflowCxV3Changelog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Changelog
Returns a new instance of GoogleCloudDialogflowCxV3Changelog.
998 999 1000 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Corresponds to the JSON property action
961 962 963 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 961 def action @action end |
#create_time ⇒ String
Corresponds to the JSON property createTime
966 967 968 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 966 def create_time @create_time end |
#display_name ⇒ String
Corresponds to the JSON property displayName
971 972 973 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 971 def display_name @display_name end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
976 977 978 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 976 def language_code @language_code end |
#name ⇒ String
Corresponds to the JSON property name
981 982 983 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 981 def name @name end |
#resource ⇒ String
Corresponds to the JSON property resource
986 987 988 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 986 def resource @resource end |
#type ⇒ String
Corresponds to the JSON property type
991 992 993 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 991 def type @type end |
#user_email ⇒ String
Corresponds to the JSON property userEmail
996 997 998 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 996 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1003 def update!(**args) @action = args[:action] if args.key?(:action) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @language_code = args[:language_code] if args.key?(:language_code) @name = args[:name] if args.key?(:name) @resource = args[:resource] if args.key?(:resource) @type = args[:type] if args.key?(:type) @user_email = args[:user_email] if args.key?(:user_email) end |