google-apis-walletobjects_v1 0.14.0 → 0.15.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25b794b7620227fa754d449e92a808fe49f7a80972cc51a8331704693894ada8
|
4
|
+
data.tar.gz: ae7879c900e6dbd53082c2b1c9aae37f385ee543e196f7b0281573f814d36212
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dec8b245e74559088b1882f3442fa023345da3be77eca987bdd9d881d084a564bbccdd5a1fa690137d7cbaebeddb1e63fd0acb959df806bf99bf0a0f5e6a7052
|
7
|
+
data.tar.gz: b86fcd5a32c768b28daf9631b362f63b518eae5c0683c5d7ef821915a57e27e74e3669f8b11b86858f80b60eaedf311b2992bf0fdef052c51abd26668d27887a
|
data/CHANGELOG.md
CHANGED
@@ -1977,6 +1977,22 @@ module Google
|
|
1977
1977
|
# @return [String]
|
1978
1978
|
attr_accessor :kind
|
1979
1979
|
|
1980
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
1981
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
1982
|
+
# automatically attached to this event ticket object. If a user had saved this
|
1983
|
+
# event ticket, then these linked_object_ids would be automatically pushed to
|
1984
|
+
# the user's wallet (unless they turned off the setting to receive such linked
|
1985
|
+
# passes). Make sure that objects present in linked_object_ids are already
|
1986
|
+
# inserted - if not, calls would fail. Once linked, the linked objects cannot be
|
1987
|
+
# unlinked. You cannot link objects belonging to another issuer. There is a
|
1988
|
+
# limit to the number of objects that can be linked to a single object. After
|
1989
|
+
# the limit is reached, new linked objects in the call will be ignored silently.
|
1990
|
+
# Object IDs should follow the format issuer ID. identifier where the former is
|
1991
|
+
# issued by Google and the latter is chosen by you.
|
1992
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
1993
|
+
# @return [Array<String>]
|
1994
|
+
attr_accessor :linked_object_ids
|
1995
|
+
|
1980
1996
|
# A list of offer objects linked to this event ticket. The offer objects must
|
1981
1997
|
# already exist. Offer object IDs should follow the format issuer ID. identifier
|
1982
1998
|
# where the former is issued by Google and latter is chosen by you.
|
@@ -2100,6 +2116,7 @@ module Google
|
|
2100
2116
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
2101
2117
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
2102
2118
|
@kind = args[:kind] if args.key?(:kind)
|
2119
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
2103
2120
|
@linked_offer_ids = args[:linked_offer_ids] if args.key?(:linked_offer_ids)
|
2104
2121
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
2105
2122
|
@locations = args[:locations] if args.key?(:locations)
|
@@ -2898,6 +2915,22 @@ module Google
|
|
2898
2915
|
# @return [String]
|
2899
2916
|
attr_accessor :kind
|
2900
2917
|
|
2918
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
2919
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
2920
|
+
# automatically attached to this flight object. If a user had saved this
|
2921
|
+
# boarding pass, then these linked_object_ids would be automatically pushed to
|
2922
|
+
# the user's wallet (unless they turned off the setting to receive such linked
|
2923
|
+
# passes). Make sure that objects present in linked_object_ids are already
|
2924
|
+
# inserted - if not, calls would fail. Once linked, the linked objects cannot be
|
2925
|
+
# unlinked. You cannot link objects belonging to another issuer. There is a
|
2926
|
+
# limit to the number of objects that can be linked to a single object. After
|
2927
|
+
# the limit is reached, new linked objects in the call will be ignored silently.
|
2928
|
+
# Object IDs should follow the format issuer ID. identifier where the former is
|
2929
|
+
# issued by Google and the latter is chosen by you.
|
2930
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
2931
|
+
# @return [Array<String>]
|
2932
|
+
attr_accessor :linked_object_ids
|
2933
|
+
|
2901
2934
|
# Links module data. If links module data is also defined on the class, both
|
2902
2935
|
# will be displayed.
|
2903
2936
|
# Corresponds to the JSON property `linksModuleData`
|
@@ -3001,6 +3034,7 @@ module Google
|
|
3001
3034
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
3002
3035
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
3003
3036
|
@kind = args[:kind] if args.key?(:kind)
|
3037
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
3004
3038
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
3005
3039
|
@locations = args[:locations] if args.key?(:locations)
|
3006
3040
|
@messages = args[:messages] if args.key?(:messages)
|
@@ -3337,6 +3371,22 @@ module Google
|
|
3337
3371
|
# @return [Array<Google::Apis::WalletobjectsV1::ImageModuleData>]
|
3338
3372
|
attr_accessor :image_modules_data
|
3339
3373
|
|
3374
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
3375
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
3376
|
+
# automatically attached to this generic object. If a user had saved this
|
3377
|
+
# generic card, then these linked_object_ids would be automatically pushed to
|
3378
|
+
# the user's wallet (unless they turned off the setting to receive such linked
|
3379
|
+
# passes). Make sure that objects present in linked_object_ids are already
|
3380
|
+
# inserted - if not, calls would fail. Once linked, the linked objects cannot be
|
3381
|
+
# unlinked. You cannot link objects belonging to another issuer. There is a
|
3382
|
+
# limit to the number of objects that can be linked to a single object. After
|
3383
|
+
# the limit is reached, new linked objects in the call will be ignored silently.
|
3384
|
+
# Object IDs should follow the format issuer ID. identifier where the former is
|
3385
|
+
# issued by Google and the latter is chosen by you.
|
3386
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
3387
|
+
# @return [Array<String>]
|
3388
|
+
attr_accessor :linked_object_ids
|
3389
|
+
|
3340
3390
|
# Links module data. If `linksModuleData` is also defined on the class, both
|
3341
3391
|
# will be displayed. The maximum number of these fields displayed is 10 from
|
3342
3392
|
# class and 10 from object.
|
@@ -3438,6 +3488,7 @@ module Google
|
|
3438
3488
|
@hex_background_color = args[:hex_background_color] if args.key?(:hex_background_color)
|
3439
3489
|
@id = args[:id] if args.key?(:id)
|
3440
3490
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
3491
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
3441
3492
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
3442
3493
|
@logo = args[:logo] if args.key?(:logo)
|
3443
3494
|
@messages = args[:messages] if args.key?(:messages)
|
@@ -3948,6 +3999,22 @@ module Google
|
|
3948
3999
|
# @return [String]
|
3949
4000
|
attr_accessor :kind
|
3950
4001
|
|
4002
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
4003
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
4004
|
+
# automatically attached to this giftcard object. If a user had saved this gift
|
4005
|
+
# card, then these linked_object_ids would be automatically pushed to the user's
|
4006
|
+
# wallet (unless they turned off the setting to receive such linked passes).
|
4007
|
+
# Make sure that objects present in linked_object_ids are already inserted - if
|
4008
|
+
# not, calls would fail. Once linked, the linked objects cannot be unlinked. You
|
4009
|
+
# cannot link objects belonging to another issuer. There is a limit to the
|
4010
|
+
# number of objects that can be linked to a single object. After the limit is
|
4011
|
+
# reached, new linked objects in the call will be ignored silently. Object IDs
|
4012
|
+
# should follow the format issuer ID. identifier where the former is issued by
|
4013
|
+
# Google and the latter is chosen by you.
|
4014
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
4015
|
+
# @return [Array<String>]
|
4016
|
+
attr_accessor :linked_object_ids
|
4017
|
+
|
3951
4018
|
# Links module data. If links module data is also defined on the class, both
|
3952
4019
|
# will be displayed.
|
3953
4020
|
# Corresponds to the JSON property `linksModuleData`
|
@@ -4042,6 +4109,7 @@ module Google
|
|
4042
4109
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
4043
4110
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
4044
4111
|
@kind = args[:kind] if args.key?(:kind)
|
4112
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
4045
4113
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
4046
4114
|
@locations = args[:locations] if args.key?(:locations)
|
4047
4115
|
@messages = args[:messages] if args.key?(:messages)
|
@@ -5101,6 +5169,22 @@ module Google
|
|
5101
5169
|
# @return [String]
|
5102
5170
|
attr_accessor :kind
|
5103
5171
|
|
5172
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
5173
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
5174
|
+
# automatically attached to this loyalty object. If a user had saved this
|
5175
|
+
# loyalty card, then these linked_object_ids would be automatically pushed to
|
5176
|
+
# the user's wallet (unless they turned off the setting to receive such linked
|
5177
|
+
# passes). Make sure that objects present in linked_object_ids are already
|
5178
|
+
# inserted - if not, calls would fail. Once linked, the linked objects cannot be
|
5179
|
+
# unlinked. You cannot link objects belonging to another issuer. There is a
|
5180
|
+
# limit to the number of objects that can be linked to a single object. After
|
5181
|
+
# the limit is reached, new linked objects in the call will be ignored silently.
|
5182
|
+
# Object IDs should follow the format issuer ID. identifier where the former is
|
5183
|
+
# issued by Google and the latter is chosen by you.
|
5184
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
5185
|
+
# @return [Array<String>]
|
5186
|
+
attr_accessor :linked_object_ids
|
5187
|
+
|
5104
5188
|
# A list of offer objects linked to this loyalty card. The offer objects must
|
5105
5189
|
# already exist. Offer object IDs should follow the format issuer ID. identifier
|
5106
5190
|
# where the former is issued by Google and latter is chosen by you.
|
@@ -5209,6 +5293,7 @@ module Google
|
|
5209
5293
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
5210
5294
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
5211
5295
|
@kind = args[:kind] if args.key?(:kind)
|
5296
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
5212
5297
|
@linked_offer_ids = args[:linked_offer_ids] if args.key?(:linked_offer_ids)
|
5213
5298
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
5214
5299
|
@locations = args[:locations] if args.key?(:locations)
|
@@ -6329,6 +6414,22 @@ module Google
|
|
6329
6414
|
# @return [String]
|
6330
6415
|
attr_accessor :kind
|
6331
6416
|
|
6417
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
6418
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
6419
|
+
# automatically attached to this offer object. If a user had saved this offer,
|
6420
|
+
# then these linked_object_ids would be automatically pushed to the user's
|
6421
|
+
# wallet (unless they turned off the setting to receive such linked passes).
|
6422
|
+
# Make sure that objects present in linked_object_ids are already inserted - if
|
6423
|
+
# not, calls would fail. Once linked, the linked objects cannot be unlinked. You
|
6424
|
+
# cannot link objects belonging to another issuer. There is a limit to the
|
6425
|
+
# number of objects that can be linked to a single object. After the limit is
|
6426
|
+
# reached, new linked objects in the call will be ignored silently. Object IDs
|
6427
|
+
# should follow the format issuer ID.identifier where the former is issued by
|
6428
|
+
# Google and the latter is chosen by you.
|
6429
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
6430
|
+
# @return [Array<String>]
|
6431
|
+
attr_accessor :linked_object_ids
|
6432
|
+
|
6332
6433
|
# Links module data. If links module data is also defined on the class, both
|
6333
6434
|
# will be displayed.
|
6334
6435
|
# Corresponds to the JSON property `linksModuleData`
|
@@ -6414,6 +6515,7 @@ module Google
|
|
6414
6515
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
6415
6516
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
6416
6517
|
@kind = args[:kind] if args.key?(:kind)
|
6518
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
6417
6519
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
6418
6520
|
@locations = args[:locations] if args.key?(:locations)
|
6419
6521
|
@messages = args[:messages] if args.key?(:messages)
|
@@ -8039,6 +8141,22 @@ module Google
|
|
8039
8141
|
# @return [Google::Apis::WalletobjectsV1::InfoModuleData]
|
8040
8142
|
attr_accessor :info_module_data
|
8041
8143
|
|
8144
|
+
# linked_object_ids are a list of other objects such as event ticket, loyalty,
|
8145
|
+
# offer, generic, giftcard, transit and boarding pass that should be
|
8146
|
+
# automatically attached to this transit object. If a user had saved this
|
8147
|
+
# transit card, then these linked_object_ids would be automatically pushed to
|
8148
|
+
# the user's wallet (unless they turned off the setting to receive such linked
|
8149
|
+
# passes). Make sure that objects present in linked_object_ids are already
|
8150
|
+
# inserted - if not, calls would fail. Once linked, the linked objects cannot be
|
8151
|
+
# unlinked. You cannot link objects belonging to another issuer. There is a
|
8152
|
+
# limit to the number of objects that can be linked to a single object. After
|
8153
|
+
# the limit is reached, new linked objects in the call will be ignored silently.
|
8154
|
+
# Object IDs should follow the format issuer ID. identifier where the former is
|
8155
|
+
# issued by Google and the latter is chosen by you.
|
8156
|
+
# Corresponds to the JSON property `linkedObjectIds`
|
8157
|
+
# @return [Array<String>]
|
8158
|
+
attr_accessor :linked_object_ids
|
8159
|
+
|
8042
8160
|
# Links module data. If links module data is also defined on the class, both
|
8043
8161
|
# will be displayed.
|
8044
8162
|
# Corresponds to the JSON property `linksModuleData`
|
@@ -8192,6 +8310,7 @@ module Google
|
|
8192
8310
|
@id = args[:id] if args.key?(:id)
|
8193
8311
|
@image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
|
8194
8312
|
@info_module_data = args[:info_module_data] if args.key?(:info_module_data)
|
8313
|
+
@linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
|
8195
8314
|
@links_module_data = args[:links_module_data] if args.key?(:links_module_data)
|
8196
8315
|
@locations = args[:locations] if args.key?(:locations)
|
8197
8316
|
@messages = args[:messages] if args.key?(:messages)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WalletobjectsV1
|
18
18
|
# Version of the google-apis-walletobjects_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240809"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1413,6 +1413,7 @@ module Google
|
|
1413
1413
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
1414
1414
|
|
1415
1415
|
property :kind, as: 'kind'
|
1416
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
1416
1417
|
collection :linked_offer_ids, as: 'linkedOfferIds'
|
1417
1418
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
1418
1419
|
|
@@ -1644,6 +1645,7 @@ module Google
|
|
1644
1645
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
1645
1646
|
|
1646
1647
|
property :kind, as: 'kind'
|
1648
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
1647
1649
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
1648
1650
|
|
1649
1651
|
collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
|
@@ -1766,6 +1768,7 @@ module Google
|
|
1766
1768
|
property :id, as: 'id'
|
1767
1769
|
collection :image_modules_data, as: 'imageModulesData', class: Google::Apis::WalletobjectsV1::ImageModuleData, decorator: Google::Apis::WalletobjectsV1::ImageModuleData::Representation
|
1768
1770
|
|
1771
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
1769
1772
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
1770
1773
|
|
1771
1774
|
property :logo, as: 'logo', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
|
@@ -1923,6 +1926,7 @@ module Google
|
|
1923
1926
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
1924
1927
|
|
1925
1928
|
property :kind, as: 'kind'
|
1929
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
1926
1930
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
1927
1931
|
|
1928
1932
|
collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
|
@@ -2249,6 +2253,7 @@ module Google
|
|
2249
2253
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
2250
2254
|
|
2251
2255
|
property :kind, as: 'kind'
|
2256
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
2252
2257
|
collection :linked_offer_ids, as: 'linkedOfferIds'
|
2253
2258
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
2254
2259
|
|
@@ -2549,6 +2554,7 @@ module Google
|
|
2549
2554
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
2550
2555
|
|
2551
2556
|
property :kind, as: 'kind'
|
2557
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
2552
2558
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
2553
2559
|
|
2554
2560
|
collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
|
@@ -3020,6 +3026,7 @@ module Google
|
|
3020
3026
|
|
3021
3027
|
property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
|
3022
3028
|
|
3029
|
+
collection :linked_object_ids, as: 'linkedObjectIds'
|
3023
3030
|
property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
|
3024
3031
|
|
3025
3032
|
collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-walletobjects_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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: 2024-08-
|
11
|
+
date: 2024-08-11 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-walletobjects_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-walletobjects_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-walletobjects_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-walletobjects_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|