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

Google Chat events.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeprecatedEvent

Returns a new instance of DeprecatedEvent.



665
666
667
# File 'lib/google/apis/chat_v1/classes.rb', line 665

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, an Apps Script can be invoked to handle the form. Corresponds to the JSON property action



594
595
596
# File 'lib/google/apis/chat_v1/classes.rb', line 594

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



602
603
604
# File 'lib/google/apis/chat_v1/classes.rb', line 602

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. See the Authorizing access to 3p services guide for more information. Corresponds to the JSON property configCompleteRedirectUrl

Returns:

  • (String)


610
611
612
# File 'lib/google/apis/chat_v1/classes.rb', line 610

def config_complete_redirect_url
  @config_complete_redirect_url
end

#dialog_event_typeString

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

Returns:

  • (String)


616
617
618
# File 'lib/google/apis/chat_v1/classes.rb', line 616

def dialog_event_type
  @dialog_event_type
end

#event_timeString

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

Returns:

  • (String)


621
622
623
# File 'lib/google/apis/chat_v1/classes.rb', line 621

def event_time
  @event_time
end

#is_dialog_eventBoolean Also known as: is_dialog_event?

True when the event is related to dialogs. Corresponds to the JSON property isDialogEvent

Returns:

  • (Boolean)


627
628
629
# File 'lib/google/apis/chat_v1/classes.rb', line 627

def is_dialog_event
  @is_dialog_event
end

#messageGoogle::Apis::ChatV1::Message

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



633
634
635
# File 'lib/google/apis/chat_v1/classes.rb', line 633

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



639
640
641
# File 'lib/google/apis/chat_v1/classes.rb', line 639

def space
  @space
end

#thread_keyString

The Chat app-defined key for the thread related to the event. See the thread_key field of the spaces.message.create request for more information. Corresponds to the JSON property threadKey

Returns:

  • (String)


645
646
647
# File 'lib/google/apis/chat_v1/classes.rb', line 645

def thread_key
  @thread_key
end

#tokenString

A secret value that Chat apps can use to verify if a request is from Google. The token is randomly generated by Google, remains static, and can be obtained from the Google Chat API configuration page in the Cloud Console. Developers can revoke/regenerate it if needed from the same page. Corresponds to the JSON property token

Returns:

  • (String)


653
654
655
# File 'lib/google/apis/chat_v1/classes.rb', line 653

def token
  @token
end

#typeString

The type of the event. Corresponds to the JSON property type

Returns:

  • (String)


658
659
660
# File 'lib/google/apis/chat_v1/classes.rb', line 658

def type
  @type
end

#userGoogle::Apis::ChatV1::User

A user in Google Chat. Corresponds to the JSON property user



663
664
665
# File 'lib/google/apis/chat_v1/classes.rb', line 663

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



670
671
672
673
674
675
676
677
678
679
680
681
682
683
# File 'lib/google/apis/chat_v1/classes.rb', line 670

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