Class: Google::Apis::CloudsearchV1::GsuiteIntegrationMetadata

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

Annotation metadata for an GsuiteIntegration artifact.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GsuiteIntegrationMetadata

Returns a new instance of GsuiteIntegrationMetadata.



10440
10441
10442
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10440

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

Instance Attribute Details

#activity_feed_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedActivityFeedAnnotationData

Next Id: 7 Corresponds to the JSON property activityFeedData



10398
10399
10400
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10398

def activity_feed_data
  @activity_feed_data
end

#assistant_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedAssistantAnnotationData

This is the internal version of the API proto at google3/google/chat/v1/ gsuite_message_integration.proto Data used to render Assistant suggestions. See go/bullseye-rendering. Corresponds to the JSON property assistantData



10405
10406
10407
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10405

def assistant_data
  @assistant_data
end

#calendar_event_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedCalendarEventAnnotationData

Corresponds to the JSON property calendarEventData



10410
10411
10412
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10410

def calendar_event_data
  @calendar_event_data
end

#call_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedCallAnnotationData

Data used to render Meet or Google Voice chips in Chat. See go/dynamite- calling-artifacts-in-chat. Corresponds to the JSON property callData



10416
10417
10418
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10416

def call_data
  @call_data
end

#client_typeString

Corresponds to the JSON property clientType

Returns:

  • (String)


10421
10422
10423
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10421

def client_type
  @client_type
end

#indexable_textsArray<String>

A list of all strings that are to be indexed for this 1P chip. Each string in this list would be the contents of a single string field in the 1P chip. Eg. For Tasks[title = “hello world”, description = “good bye”]. If we want to index only the title, this would be set to [“hello world”]. If both title and description, then this would be [“hello world”, “good bye”]. Please make sure that the contents of this field is a subset of strings that are rendered as part of the 1P Chip. Corresponds to the JSON property indexableTexts

Returns:

  • (Array<String>)


10432
10433
10434
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10432

def indexable_texts
  @indexable_texts
end

#tasks_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedTasksAnnotationData

This is the internal version of the API proto at google3/google/chat/v1/ gsuite_message_integration.proto Corresponds to the JSON property tasksData



10438
10439
10440
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10438

def tasks_data
  @tasks_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10445
10446
10447
10448
10449
10450
10451
10452
10453
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10445

def update!(**args)
  @activity_feed_data = args[:activity_feed_data] if args.key?(:activity_feed_data)
  @assistant_data = args[:assistant_data] if args.key?(:assistant_data)
  @calendar_event_data = args[:calendar_event_data] if args.key?(:calendar_event_data)
  @call_data = args[:call_data] if args.key?(:call_data)
  @client_type = args[:client_type] if args.key?(:client_type)
  @indexable_texts = args[:indexable_texts] if args.key?(:indexable_texts)
  @tasks_data = args[:tasks_data] if args.key?(:tasks_data)
end