Class: Google::Apis::CloudsearchV1::WhiteboardInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WhiteboardInfo

Returns a new instance of WhiteboardInfo.



21379
21380
21381
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21379

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

The Cosmo Id of the whiteboard document (Jam). Corresponds to the JSON property id

Returns:

  • (String)


21367
21368
21369
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21367

def id
  @id
end

#titleString

Title of the whiteboard document. Corresponds to the JSON property title

Returns:

  • (String)


21372
21373
21374
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21372

def title
  @title
end

#uriString

The uri for whiteboard document. Corresponds to the JSON property uri

Returns:

  • (String)


21377
21378
21379
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21377

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21384
21385
21386
21387
21388
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21384

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