class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResourceName

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_v3beta1/classes.rb, line 6290
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_v3beta1/classes.rb, line 6295
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
end