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.



9165
9166
9167
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9165

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

Instance Attribute Details

#activity_feed_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedActivityFeedAnnotationData

Next Id: 5 Corresponds to the JSON property activityFeedData



9123
9124
9125
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9123

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



9130
9131
9132
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9130

def assistant_data
  @assistant_data
end

#calendar_event_dataGoogle::Apis::CloudsearchV1::AppsDynamiteSharedCalendarEventAnnotationData

Corresponds to the JSON property calendarEventData



9135
9136
9137
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9135

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



9141
9142
9143
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9141

def call_data
  @call_data
end

#client_typeString

Corresponds to the JSON property clientType

Returns:

  • (String)


9146
9147
9148
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9146

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>)


9157
9158
9159
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9157

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



9163
9164
9165
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9163

def tasks_data
  @tasks_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9170
9171
9172
9173
9174
9175
9176
9177
9178
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9170

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