Class: Google::Apis::CloudsearchV1::WhiteboardInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::WhiteboardInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Information on a whiteboard attached to an active conference. A whiteboard is a Jam document.
Instance Attribute Summary collapse
-
#id ⇒ String
The Cosmo Id of the whiteboard document (Jam).
-
#title ⇒ String
Title of the whiteboard document.
-
#uri ⇒ String
The uri for whiteboard document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WhiteboardInfo
constructor
A new instance of WhiteboardInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WhiteboardInfo
Returns a new instance of WhiteboardInfo.
18002 18003 18004 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18002 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The Cosmo Id of the whiteboard document (Jam).
Corresponds to the JSON property id
17990 17991 17992 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17990 def id @id end |
#title ⇒ String
Title of the whiteboard document.
Corresponds to the JSON property title
17995 17996 17997 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17995 def title @title end |
#uri ⇒ String
The uri for whiteboard document.
Corresponds to the JSON property uri
18000 18001 18002 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18000 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18007 18008 18009 18010 18011 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18007 def update!(**args) @id = args[:id] if args.key?(:id) @title = args[:title] if args.key?(:title) @uri = args[:uri] if args.key?(:uri) end |