Class: Google::Apis::ChatV1::DeprecatedEvent

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Overview

A Google Chat app interaction event. To learn about interaction events, see Receive and respond to interactions with your Google Chat app. To learn about event types and for example event payloads, see Types of Google Chat app interaction events.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeprecatedEvent

Returns a new instance of DeprecatedEvent.



911
912
913
# File 'lib/google/apis/chat_v1/classes.rb', line 911

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

Instance Attribute Details

#actionGoogle::Apis::ChatV1::FormAction

A form action describes the behavior when the form is submitted. For example, you can invoke Apps Script to handle the form. Corresponds to the JSON property action



831
832
833
# File 'lib/google/apis/chat_v1/classes.rb', line 831

def action
  @action
end

#commonGoogle::Apis::ChatV1::CommonEventObject

Represents information about the user's client, such as locale, host app, and platform. For Chat apps, CommonEventObject includes data submitted by users interacting with cards, like data entered in dialogs. Corresponds to the JSON property common



839
840
841
# File 'lib/google/apis/chat_v1/classes.rb', line 839

def common
  @common
end

#config_complete_redirect_urlString

The URL the Chat app should redirect the user to after they have completed an authorization or configuration flow outside of Google Chat. For more information, see Connect a Chat app with other services & tools. Corresponds to the JSON property configCompleteRedirectUrl

Returns:

  • (String)


847
848
849
# File 'lib/google/apis/chat_v1/classes.rb', line 847

def config_complete_redirect_url
  @config_complete_redirect_url
end

#dialog_event_typeString

The type of dialog interaction event received. Corresponds to the JSON property dialogEventType

Returns:

  • (String)


853
854
855
# File 'lib/google/apis/chat_v1/classes.rb', line 853

def dialog_event_type
  @dialog_event_type
end

#event_timeString

The timestamp indicating when the interaction event occurred. Corresponds to the JSON property eventTime

Returns:

  • (String)


858
859
860
# File 'lib/google/apis/chat_v1/classes.rb', line 858

def event_time
  @event_time
end

#is_dialog_eventBoolean Also known as: is_dialog_event?

For CARD_CLICKED interaction events, whether the user interacted with a dialog. Corresponds to the JSON property isDialogEvent

Returns:

  • (Boolean)


864
865
866
# File 'lib/google/apis/chat_v1/classes.rb', line 864

def is_dialog_event
  @is_dialog_event
end

#messageGoogle::Apis::ChatV1::Message

A message in a Google Chat space. Corresponds to the JSON property message



870
871
872
# File 'lib/google/apis/chat_v1/classes.rb', line 870

def message
  @message
end

#spaceGoogle::Apis::ChatV1::Space

A space in Google Chat. Spaces are conversations between two or more users or 1:1 messages between a user and a Chat app. Corresponds to the JSON property space



876
877
878
# File 'lib/google/apis/chat_v1/classes.rb', line 876

def space
  @space
end

#thread_keyString

The Chat app-defined key for the thread related to the interaction event. See spaces.messages.thread.threadKey for more information. Corresponds to the JSON property threadKey

Returns:

  • (String)


883
884
885
# File 'lib/google/apis/chat_v1/classes.rb', line 883

def thread_key
  @thread_key
end

#tokenString

A secret value that legacy Chat apps can use to verify if a request is from Google. Google randomly generates the token, and its value remains static. You can obtain, revoke, or regenerate the token from the Chat API configuration page in the Google Cloud Console. Modern Chat apps don't use this field. It is absent from API responses and the Chat API configuration page. Corresponds to the JSON property token

Returns:

  • (String)


894
895
896
# File 'lib/google/apis/chat_v1/classes.rb', line 894

def token
  @token
end

#typeString

The type of interaction event. For details, see Types of Google Chat app interaction events. Corresponds to the JSON property type

Returns:

  • (String)


901
902
903
# File 'lib/google/apis/chat_v1/classes.rb', line 901

def type
  @type
end

#userGoogle::Apis::ChatV1::User

A user in Google Chat. When returned as an output from a request, if your Chat app authenticates as a user, the output for a User resource only populates the user's name and type. Corresponds to the JSON property user



909
910
911
# File 'lib/google/apis/chat_v1/classes.rb', line 909

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



916
917
918
919
920
921
922
923
924
925
926
927
928
929
# File 'lib/google/apis/chat_v1/classes.rb', line 916

def update!(**args)
  @action = args[:action] if args.key?(:action)
  @common = args[:common] if args.key?(:common)
  @config_complete_redirect_url = args[:config_complete_redirect_url] if args.key?(:config_complete_redirect_url)
  @dialog_event_type = args[:dialog_event_type] if args.key?(:dialog_event_type)
  @event_time = args[:event_time] if args.key?(:event_time)
  @is_dialog_event = args[:is_dialog_event] if args.key?(:is_dialog_event)
  @message = args[:message] if args.key?(:message)
  @space = args[:space] if args.key?(:space)
  @thread_key = args[:thread_key] if args.key?(:thread_key)
  @token = args[:token] if args.key?(:token)
  @type = args[:type] if args.key?(:type)
  @user = args[:user] if args.key?(:user)
end