google-apis-chat_v1 0.63.0 → 0.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/chat_v1/classes.rb +33 -0
- data/lib/google/apis/chat_v1/gem_version.rb +2 -2
- data/lib/google/apis/chat_v1/representations.rb +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbdff95aa55c6492c227c63a8b88b3bef7d7c42623e4417b6971f8207af1bbe2
|
4
|
+
data.tar.gz: 14ab242bdc9b5222d90497ff8960c5edca8fc0701500e5faefd3785074f3e7f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5eb13fb4d9e93d4452155332d917869ae2eb9f43350d2cac022c590fa39b16210a4f5d010361d06c055d9e6d508216f7c9609833b3f0e5260ace125dd9364bf2
|
7
|
+
data.tar.gz: 26d3f85923ef3b1ff10e5f894cc217a7f550059e5283872bf6397e0fc8574ab7e6d797f3e0becafc9f65d60a101c9ce5bbaf7bee62ca37f4ebec811e404697c2
|
data/CHANGELOG.md
CHANGED
@@ -3193,6 +3193,11 @@ module Google
|
|
3193
3193
|
# @return [String]
|
3194
3194
|
attr_accessor :name
|
3195
3195
|
|
3196
|
+
# Information about a quoted message.
|
3197
|
+
# Corresponds to the JSON property `quotedMessageMetadata`
|
3198
|
+
# @return [Google::Apis::ChatV1::QuotedMessageMetadata]
|
3199
|
+
attr_accessor :quoted_message_metadata
|
3200
|
+
|
3196
3201
|
# A user in Google Chat.
|
3197
3202
|
# Corresponds to the JSON property `sender`
|
3198
3203
|
# @return [Google::Apis::ChatV1::User]
|
@@ -3252,6 +3257,7 @@ module Google
|
|
3252
3257
|
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
3253
3258
|
@matched_url = args[:matched_url] if args.key?(:matched_url)
|
3254
3259
|
@name = args[:name] if args.key?(:name)
|
3260
|
+
@quoted_message_metadata = args[:quoted_message_metadata] if args.key?(:quoted_message_metadata)
|
3255
3261
|
@sender = args[:sender] if args.key?(:sender)
|
3256
3262
|
@slash_command = args[:slash_command] if args.key?(:slash_command)
|
3257
3263
|
@space = args[:space] if args.key?(:space)
|
@@ -3306,6 +3312,33 @@ module Google
|
|
3306
3312
|
end
|
3307
3313
|
end
|
3308
3314
|
|
3315
|
+
# Information about a quoted message.
|
3316
|
+
class QuotedMessageMetadata
|
3317
|
+
include Google::Apis::Core::Hashable
|
3318
|
+
|
3319
|
+
# Output only. The timestamp when the quoted message was created or when the
|
3320
|
+
# quoted message was last updated.
|
3321
|
+
# Corresponds to the JSON property `lastUpdateTime`
|
3322
|
+
# @return [String]
|
3323
|
+
attr_accessor :last_update_time
|
3324
|
+
|
3325
|
+
# Output only. Resource name of the quoted message. Format: `spaces/`space`/
|
3326
|
+
# messages/`message``
|
3327
|
+
# Corresponds to the JSON property `name`
|
3328
|
+
# @return [String]
|
3329
|
+
attr_accessor :name
|
3330
|
+
|
3331
|
+
def initialize(**args)
|
3332
|
+
update!(**args)
|
3333
|
+
end
|
3334
|
+
|
3335
|
+
# Update properties of this object
|
3336
|
+
def update!(**args)
|
3337
|
+
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
3338
|
+
@name = args[:name] if args.key?(:name)
|
3339
|
+
end
|
3340
|
+
end
|
3341
|
+
|
3309
3342
|
# A reaction to a message.
|
3310
3343
|
class Reaction
|
3311
3344
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChatV1
|
18
18
|
# Version of the google-apis-chat_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230704"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -460,6 +460,12 @@ module Google
|
|
460
460
|
include Google::Apis::Core::JsonObjectSupport
|
461
461
|
end
|
462
462
|
|
463
|
+
class QuotedMessageMetadata
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
463
469
|
class Reaction
|
464
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
471
|
|
@@ -1363,6 +1369,8 @@ module Google
|
|
1363
1369
|
property :matched_url, as: 'matchedUrl', class: Google::Apis::ChatV1::MatchedUrl, decorator: Google::Apis::ChatV1::MatchedUrl::Representation
|
1364
1370
|
|
1365
1371
|
property :name, as: 'name'
|
1372
|
+
property :quoted_message_metadata, as: 'quotedMessageMetadata', class: Google::Apis::ChatV1::QuotedMessageMetadata, decorator: Google::Apis::ChatV1::QuotedMessageMetadata::Representation
|
1373
|
+
|
1366
1374
|
property :sender, as: 'sender', class: Google::Apis::ChatV1::User, decorator: Google::Apis::ChatV1::User::Representation
|
1367
1375
|
|
1368
1376
|
property :slash_command, as: 'slashCommand', class: Google::Apis::ChatV1::SlashCommand, decorator: Google::Apis::ChatV1::SlashCommand::Representation
|
@@ -1393,6 +1401,14 @@ module Google
|
|
1393
1401
|
end
|
1394
1402
|
end
|
1395
1403
|
|
1404
|
+
class QuotedMessageMetadata
|
1405
|
+
# @private
|
1406
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1407
|
+
property :last_update_time, as: 'lastUpdateTime'
|
1408
|
+
property :name, as: 'name'
|
1409
|
+
end
|
1410
|
+
end
|
1411
|
+
|
1396
1412
|
class Reaction
|
1397
1413
|
# @private
|
1398
1414
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chat_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chat_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.64.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chat_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|