class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResourceName
Resource name and display name.
Attributes
display_name[RW]
Display name. Corresponds to the JSON property `displayName` @return [String]
name[RW]
Name. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 3749 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 3754 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) end