class Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaTopic
Represents a Topic umbrella for a list of questions that a Creator may want to respond to.
Attributes
display_name[RW]
String displayed to the creator indicating the name of the Topic. Corresponds to the JSON property `displayName` @return [String]
mid[RW]
The mID of the topic. Corresponds to the JSON property `mid` @return [String]
name[RW]
Unique identifier for the topic. Format: topics/`topic` Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ideahub_v1beta/classes.rb, line 188 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ideahub_v1beta/classes.rb, line 193 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @mid = args[:mid] if args.key?(:mid) @name = args[:name] if args.key?(:name) end