google-apis-walletobjects_v1 0.14.0 → 0.16.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: df0e45620f627bd43e05fa90b66d6593819eb5e8ddb56c65f83a94446c6e4076
4
- data.tar.gz: 4dfae37a4d229e293773ed935c717e35e22b65e249ff9876933d6709f6d35747
3
+ metadata.gz: 9d4df56cdd992f7f909d554eea593634be9d615f57d8f5110d46693d8c0053ed
4
+ data.tar.gz: ff23b04ad174f8c6e6e91261a27b43e505dafc53ff4fc5b497e4049594f6422a
5
5
  SHA512:
6
- metadata.gz: 1fcbf8aadbc6892f13b86e7abfbfebb80e4381216bccdb692d9c54945b35690b1e138d28a4af20ff99c05e30e65ff22d2f64cd34d3e24acb0b0b2c537ab39e1e
7
- data.tar.gz: 367403e214f21b52f4d49832a5322a09b8079165c81d6ca9888759628bad1d8dfd1838e58f56e92adb7a51f21cd88e2aff81ef4617dda136da24b53f560d165e
6
+ metadata.gz: e5e000e1e6b01a95e605fa092284a75be32cefc538586779a7799768c94822eeaf5e51b8f4e7a0c7611b942d2326e0d1c694265da3d2ac160fa7cca752aa9467
7
+ data.tar.gz: ec6d2ad5e9ca7e6b9ac84980110270213699610d88cdf1d1de32e4163ddd21906656250f8ebb5d8e65a3087581fe1aecd7cb2e29c87cb0660a41c4304597e727
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-walletobjects_v1
2
2
 
3
+ ### v0.16.0 (2024-09-29)
4
+
5
+ * Regenerated from discovery document revision 20240927
6
+
7
+ ### v0.15.0 (2024-08-11)
8
+
9
+ * Regenerated from discovery document revision 20240809
10
+
3
11
  ### v0.14.0 (2024-08-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20240726
@@ -1750,6 +1750,12 @@ module Google
1750
1750
  # @return [Array<Google::Apis::WalletobjectsV1::TextModuleData>]
1751
1751
  attr_accessor :text_modules_data
1752
1752
 
1753
+ # Optional value added module data. Maximum of ten on the class. For a pass only
1754
+ # ten will be displayed, prioritizing those from the object.
1755
+ # Corresponds to the JSON property `valueAddedModuleData`
1756
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
1757
+ attr_accessor :value_added_module_data
1758
+
1753
1759
  # Event venue details.
1754
1760
  # Corresponds to the JSON property `venue`
1755
1761
  # @return [Google::Apis::WalletobjectsV1::EventVenue]
@@ -1820,6 +1826,7 @@ module Google
1820
1826
  @section_label = args[:section_label] if args.key?(:section_label)
1821
1827
  @security_animation = args[:security_animation] if args.key?(:security_animation)
1822
1828
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
1829
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
1823
1830
  @venue = args[:venue] if args.key?(:venue)
1824
1831
  @version = args[:version] if args.key?(:version)
1825
1832
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
@@ -1977,6 +1984,22 @@ module Google
1977
1984
  # @return [String]
1978
1985
  attr_accessor :kind
1979
1986
 
1987
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
1988
+ # offer, generic, giftcard, transit and boarding pass that should be
1989
+ # automatically attached to this event ticket object. If a user had saved this
1990
+ # event ticket, then these linked_object_ids would be automatically pushed to
1991
+ # the user's wallet (unless they turned off the setting to receive such linked
1992
+ # passes). Make sure that objects present in linked_object_ids are already
1993
+ # inserted - if not, calls would fail. Once linked, the linked objects cannot be
1994
+ # unlinked. You cannot link objects belonging to another issuer. There is a
1995
+ # limit to the number of objects that can be linked to a single object. After
1996
+ # the limit is reached, new linked objects in the call will be ignored silently.
1997
+ # Object IDs should follow the format issuer ID. identifier where the former is
1998
+ # issued by Google and the latter is chosen by you.
1999
+ # Corresponds to the JSON property `linkedObjectIds`
2000
+ # @return [Array<String>]
2001
+ attr_accessor :linked_object_ids
2002
+
1980
2003
  # A list of offer objects linked to this event ticket. The offer objects must
1981
2004
  # already exist. Offer object IDs should follow the format issuer ID. identifier
1982
2005
  # where the former is issued by Google and latter is chosen by you.
@@ -2074,6 +2097,11 @@ module Google
2074
2097
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
2075
2098
  attr_accessor :valid_time_interval
2076
2099
 
2100
+ # Optional value added module data. Maximum of ten on the object.
2101
+ # Corresponds to the JSON property `valueAddedModuleData`
2102
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
2103
+ attr_accessor :value_added_module_data
2104
+
2077
2105
  # Deprecated
2078
2106
  # Corresponds to the JSON property `version`
2079
2107
  # @return [Fixnum]
@@ -2100,6 +2128,7 @@ module Google
2100
2128
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
2101
2129
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
2102
2130
  @kind = args[:kind] if args.key?(:kind)
2131
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
2103
2132
  @linked_offer_ids = args[:linked_offer_ids] if args.key?(:linked_offer_ids)
2104
2133
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
2105
2134
  @locations = args[:locations] if args.key?(:locations)
@@ -2116,6 +2145,7 @@ module Google
2116
2145
  @ticket_number = args[:ticket_number] if args.key?(:ticket_number)
2117
2146
  @ticket_type = args[:ticket_type] if args.key?(:ticket_type)
2118
2147
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
2148
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
2119
2149
  @version = args[:version] if args.key?(:version)
2120
2150
  end
2121
2151
  end
@@ -2631,6 +2661,12 @@ module Google
2631
2661
  # @return [Array<Google::Apis::WalletobjectsV1::TextModuleData>]
2632
2662
  attr_accessor :text_modules_data
2633
2663
 
2664
+ # Optional value added module data. Maximum of ten on the class. For a pass only
2665
+ # ten will be displayed, prioritizing those from the object.
2666
+ # Corresponds to the JSON property `valueAddedModuleData`
2667
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
2668
+ attr_accessor :value_added_module_data
2669
+
2634
2670
  # Deprecated
2635
2671
  # Corresponds to the JSON property `version`
2636
2672
  # @return [Fixnum]
@@ -2688,6 +2724,7 @@ module Google
2688
2724
  @review_status = args[:review_status] if args.key?(:review_status)
2689
2725
  @security_animation = args[:security_animation] if args.key?(:security_animation)
2690
2726
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
2727
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
2691
2728
  @version = args[:version] if args.key?(:version)
2692
2729
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
2693
2730
  @word_mark = args[:word_mark] if args.key?(:word_mark)
@@ -2898,6 +2935,22 @@ module Google
2898
2935
  # @return [String]
2899
2936
  attr_accessor :kind
2900
2937
 
2938
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
2939
+ # offer, generic, giftcard, transit and boarding pass that should be
2940
+ # automatically attached to this flight object. If a user had saved this
2941
+ # boarding pass, then these linked_object_ids would be automatically pushed to
2942
+ # the user's wallet (unless they turned off the setting to receive such linked
2943
+ # passes). Make sure that objects present in linked_object_ids are already
2944
+ # inserted - if not, calls would fail. Once linked, the linked objects cannot be
2945
+ # unlinked. You cannot link objects belonging to another issuer. There is a
2946
+ # limit to the number of objects that can be linked to a single object. After
2947
+ # the limit is reached, new linked objects in the call will be ignored silently.
2948
+ # Object IDs should follow the format issuer ID. identifier where the former is
2949
+ # issued by Google and the latter is chosen by you.
2950
+ # Corresponds to the JSON property `linkedObjectIds`
2951
+ # @return [Array<String>]
2952
+ attr_accessor :linked_object_ids
2953
+
2901
2954
  # Links module data. If links module data is also defined on the class, both
2902
2955
  # will be displayed.
2903
2956
  # Corresponds to the JSON property `linksModuleData`
@@ -2975,6 +3028,11 @@ module Google
2975
3028
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
2976
3029
  attr_accessor :valid_time_interval
2977
3030
 
3031
+ # Optional value added module data. Maximum of ten on the object.
3032
+ # Corresponds to the JSON property `valueAddedModuleData`
3033
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
3034
+ attr_accessor :value_added_module_data
3035
+
2978
3036
  # Deprecated
2979
3037
  # Corresponds to the JSON property `version`
2980
3038
  # @return [Fixnum]
@@ -3001,6 +3059,7 @@ module Google
3001
3059
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
3002
3060
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
3003
3061
  @kind = args[:kind] if args.key?(:kind)
3062
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
3004
3063
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
3005
3064
  @locations = args[:locations] if args.key?(:locations)
3006
3065
  @messages = args[:messages] if args.key?(:messages)
@@ -3014,6 +3073,7 @@ module Google
3014
3073
  @state = args[:state] if args.key?(:state)
3015
3074
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
3016
3075
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
3076
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
3017
3077
  @version = args[:version] if args.key?(:version)
3018
3078
  end
3019
3079
  end
@@ -3182,6 +3242,12 @@ module Google
3182
3242
  # @return [Array<Google::Apis::WalletobjectsV1::TextModuleData>]
3183
3243
  attr_accessor :text_modules_data
3184
3244
 
3245
+ # Optional value added module data. Maximum of ten on the class. For a pass only
3246
+ # ten will be displayed, prioritizing those from the object.
3247
+ # Corresponds to the JSON property `valueAddedModuleData`
3248
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
3249
+ attr_accessor :value_added_module_data
3250
+
3185
3251
  # View Unlock Requirement options for the generic pass.
3186
3252
  # Corresponds to the JSON property `viewUnlockRequirement`
3187
3253
  # @return [String]
@@ -3205,6 +3271,7 @@ module Google
3205
3271
  @redemption_issuers = args[:redemption_issuers] if args.key?(:redemption_issuers)
3206
3272
  @security_animation = args[:security_animation] if args.key?(:security_animation)
3207
3273
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
3274
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
3208
3275
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
3209
3276
  end
3210
3277
  end
@@ -3337,6 +3404,22 @@ module Google
3337
3404
  # @return [Array<Google::Apis::WalletobjectsV1::ImageModuleData>]
3338
3405
  attr_accessor :image_modules_data
3339
3406
 
3407
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
3408
+ # offer, generic, giftcard, transit and boarding pass that should be
3409
+ # automatically attached to this generic object. If a user had saved this
3410
+ # generic card, then these linked_object_ids would be automatically pushed to
3411
+ # the user's wallet (unless they turned off the setting to receive such linked
3412
+ # passes). Make sure that objects present in linked_object_ids are already
3413
+ # inserted - if not, calls would fail. Once linked, the linked objects cannot be
3414
+ # unlinked. You cannot link objects belonging to another issuer. There is a
3415
+ # limit to the number of objects that can be linked to a single object. After
3416
+ # the limit is reached, new linked objects in the call will be ignored silently.
3417
+ # Object IDs should follow the format issuer ID. identifier where the former is
3418
+ # issued by Google and the latter is chosen by you.
3419
+ # Corresponds to the JSON property `linkedObjectIds`
3420
+ # @return [Array<String>]
3421
+ attr_accessor :linked_object_ids
3422
+
3340
3423
  # Links module data. If `linksModuleData` is also defined on the class, both
3341
3424
  # will be displayed. The maximum number of these fields displayed is 10 from
3342
3425
  # class and 10 from object.
@@ -3415,6 +3498,11 @@ module Google
3415
3498
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
3416
3499
  attr_accessor :valid_time_interval
3417
3500
 
3501
+ # Optional value added module data. Maximum of ten on the object.
3502
+ # Corresponds to the JSON property `valueAddedModuleData`
3503
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
3504
+ attr_accessor :value_added_module_data
3505
+
3418
3506
  # Wrapping type for Google hosted images. Next ID: 7
3419
3507
  # Corresponds to the JSON property `wideLogo`
3420
3508
  # @return [Google::Apis::WalletobjectsV1::Image]
@@ -3438,6 +3526,7 @@ module Google
3438
3526
  @hex_background_color = args[:hex_background_color] if args.key?(:hex_background_color)
3439
3527
  @id = args[:id] if args.key?(:id)
3440
3528
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
3529
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
3441
3530
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
3442
3531
  @logo = args[:logo] if args.key?(:logo)
3443
3532
  @messages = args[:messages] if args.key?(:messages)
@@ -3450,6 +3539,7 @@ module Google
3450
3539
  @subheader = args[:subheader] if args.key?(:subheader)
3451
3540
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
3452
3541
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
3542
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
3453
3543
  @wide_logo = args[:wide_logo] if args.key?(:wide_logo)
3454
3544
  end
3455
3545
  end
@@ -3725,6 +3815,12 @@ module Google
3725
3815
  # @return [Array<Google::Apis::WalletobjectsV1::TextModuleData>]
3726
3816
  attr_accessor :text_modules_data
3727
3817
 
3818
+ # Optional value added module data. Maximum of ten on the class. For a pass only
3819
+ # ten will be displayed, prioritizing those from the object.
3820
+ # Corresponds to the JSON property `valueAddedModuleData`
3821
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
3822
+ attr_accessor :value_added_module_data
3823
+
3728
3824
  # Deprecated
3729
3825
  # Corresponds to the JSON property `version`
3730
3826
  # @return [Fixnum]
@@ -3785,6 +3881,7 @@ module Google
3785
3881
  @review_status = args[:review_status] if args.key?(:review_status)
3786
3882
  @security_animation = args[:security_animation] if args.key?(:security_animation)
3787
3883
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
3884
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
3788
3885
  @version = args[:version] if args.key?(:version)
3789
3886
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
3790
3887
  @wide_program_logo = args[:wide_program_logo] if args.key?(:wide_program_logo)
@@ -3948,6 +4045,22 @@ module Google
3948
4045
  # @return [String]
3949
4046
  attr_accessor :kind
3950
4047
 
4048
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
4049
+ # offer, generic, giftcard, transit and boarding pass that should be
4050
+ # automatically attached to this giftcard object. If a user had saved this gift
4051
+ # card, then these linked_object_ids would be automatically pushed to the user's
4052
+ # wallet (unless they turned off the setting to receive such linked passes).
4053
+ # Make sure that objects present in linked_object_ids are already inserted - if
4054
+ # not, calls would fail. Once linked, the linked objects cannot be unlinked. You
4055
+ # cannot link objects belonging to another issuer. There is a limit to the
4056
+ # number of objects that can be linked to a single object. After the limit is
4057
+ # reached, new linked objects in the call will be ignored silently. Object IDs
4058
+ # should follow the format issuer ID. identifier where the former is issued by
4059
+ # Google and the latter is chosen by you.
4060
+ # Corresponds to the JSON property `linkedObjectIds`
4061
+ # @return [Array<String>]
4062
+ attr_accessor :linked_object_ids
4063
+
3951
4064
  # Links module data. If links module data is also defined on the class, both
3952
4065
  # will be displayed.
3953
4066
  # Corresponds to the JSON property `linksModuleData`
@@ -4014,6 +4127,11 @@ module Google
4014
4127
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
4015
4128
  attr_accessor :valid_time_interval
4016
4129
 
4130
+ # Optional value added module data. Maximum of ten on the object.
4131
+ # Corresponds to the JSON property `valueAddedModuleData`
4132
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
4133
+ attr_accessor :value_added_module_data
4134
+
4017
4135
  # Deprecated
4018
4136
  # Corresponds to the JSON property `version`
4019
4137
  # @return [Fixnum]
@@ -4042,6 +4160,7 @@ module Google
4042
4160
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
4043
4161
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
4044
4162
  @kind = args[:kind] if args.key?(:kind)
4163
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
4045
4164
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
4046
4165
  @locations = args[:locations] if args.key?(:locations)
4047
4166
  @messages = args[:messages] if args.key?(:messages)
@@ -4053,6 +4172,7 @@ module Google
4053
4172
  @state = args[:state] if args.key?(:state)
4054
4173
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
4055
4174
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
4175
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
4056
4176
  @version = args[:version] if args.key?(:version)
4057
4177
  end
4058
4178
  end
@@ -4883,6 +5003,12 @@ module Google
4883
5003
  # @return [Array<Google::Apis::WalletobjectsV1::TextModuleData>]
4884
5004
  attr_accessor :text_modules_data
4885
5005
 
5006
+ # Optional value added module data. Maximum of ten on the class. For a pass only
5007
+ # ten will be displayed, prioritizing those from the object.
5008
+ # Corresponds to the JSON property `valueAddedModuleData`
5009
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
5010
+ attr_accessor :value_added_module_data
5011
+
4886
5012
  # Deprecated
4887
5013
  # Corresponds to the JSON property `version`
4888
5014
  # @return [Fixnum]
@@ -4949,6 +5075,7 @@ module Google
4949
5075
  @secondary_rewards_tier_label = args[:secondary_rewards_tier_label] if args.key?(:secondary_rewards_tier_label)
4950
5076
  @security_animation = args[:security_animation] if args.key?(:security_animation)
4951
5077
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
5078
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
4952
5079
  @version = args[:version] if args.key?(:version)
4953
5080
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
4954
5081
  @wide_program_logo = args[:wide_program_logo] if args.key?(:wide_program_logo)
@@ -5101,6 +5228,22 @@ module Google
5101
5228
  # @return [String]
5102
5229
  attr_accessor :kind
5103
5230
 
5231
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
5232
+ # offer, generic, giftcard, transit and boarding pass that should be
5233
+ # automatically attached to this loyalty object. If a user had saved this
5234
+ # loyalty card, then these linked_object_ids would be automatically pushed to
5235
+ # the user's wallet (unless they turned off the setting to receive such linked
5236
+ # passes). Make sure that objects present in linked_object_ids are already
5237
+ # inserted - if not, calls would fail. Once linked, the linked objects cannot be
5238
+ # unlinked. You cannot link objects belonging to another issuer. There is a
5239
+ # limit to the number of objects that can be linked to a single object. After
5240
+ # the limit is reached, new linked objects in the call will be ignored silently.
5241
+ # Object IDs should follow the format issuer ID. identifier where the former is
5242
+ # issued by Google and the latter is chosen by you.
5243
+ # Corresponds to the JSON property `linkedObjectIds`
5244
+ # @return [Array<String>]
5245
+ attr_accessor :linked_object_ids
5246
+
5104
5247
  # A list of offer objects linked to this loyalty card. The offer objects must
5105
5248
  # already exist. Offer object IDs should follow the format issuer ID. identifier
5106
5249
  # where the former is issued by Google and latter is chosen by you.
@@ -5183,6 +5326,11 @@ module Google
5183
5326
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
5184
5327
  attr_accessor :valid_time_interval
5185
5328
 
5329
+ # Optional value added module data. Maximum of ten on the object.
5330
+ # Corresponds to the JSON property `valueAddedModuleData`
5331
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
5332
+ attr_accessor :value_added_module_data
5333
+
5186
5334
  # Deprecated
5187
5335
  # Corresponds to the JSON property `version`
5188
5336
  # @return [Fixnum]
@@ -5209,6 +5357,7 @@ module Google
5209
5357
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
5210
5358
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
5211
5359
  @kind = args[:kind] if args.key?(:kind)
5360
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
5212
5361
  @linked_offer_ids = args[:linked_offer_ids] if args.key?(:linked_offer_ids)
5213
5362
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
5214
5363
  @locations = args[:locations] if args.key?(:locations)
@@ -5222,6 +5371,7 @@ module Google
5222
5371
  @state = args[:state] if args.key?(:state)
5223
5372
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
5224
5373
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
5374
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
5225
5375
  @version = args[:version] if args.key?(:version)
5226
5376
  end
5227
5377
  end
@@ -5781,6 +5931,28 @@ module Google
5781
5931
  end
5782
5932
  end
5783
5933
 
5934
+ # Constraints that all must be met for the module to be shown.
5935
+ class ModuleViewConstraints
5936
+ include Google::Apis::Core::Hashable
5937
+
5938
+ # The period of time that the module will be displayed to users. Can define both
5939
+ # a `startTime` and `endTime`. The module is displayed immediately after
5940
+ # insertion unless a `startTime` is set. The module is displayed indefinitely if
5941
+ # `endTime` is not set.
5942
+ # Corresponds to the JSON property `displayInterval`
5943
+ # @return [Google::Apis::WalletobjectsV1::TimeInterval]
5944
+ attr_accessor :display_interval
5945
+
5946
+ def initialize(**args)
5947
+ update!(**args)
5948
+ end
5949
+
5950
+ # Update properties of this object
5951
+ def update!(**args)
5952
+ @display_interval = args[:display_interval] if args.key?(:display_interval)
5953
+ end
5954
+ end
5955
+
5784
5956
  #
5785
5957
  class Money
5786
5958
  include Google::Apis::Core::Hashable
@@ -6125,6 +6297,12 @@ module Google
6125
6297
  # @return [Google::Apis::WalletobjectsV1::Image]
6126
6298
  attr_accessor :title_image
6127
6299
 
6300
+ # Optional value added module data. Maximum of ten on the class. For a pass only
6301
+ # ten will be displayed, prioritizing those from the object.
6302
+ # Corresponds to the JSON property `valueAddedModuleData`
6303
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
6304
+ attr_accessor :value_added_module_data
6305
+
6128
6306
  # Deprecated
6129
6307
  # Corresponds to the JSON property `version`
6130
6308
  # @return [Fixnum]
@@ -6188,6 +6366,7 @@ module Google
6188
6366
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
6189
6367
  @title = args[:title] if args.key?(:title)
6190
6368
  @title_image = args[:title_image] if args.key?(:title_image)
6369
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
6191
6370
  @version = args[:version] if args.key?(:version)
6192
6371
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
6193
6372
  @wide_title_image = args[:wide_title_image] if args.key?(:wide_title_image)
@@ -6329,6 +6508,22 @@ module Google
6329
6508
  # @return [String]
6330
6509
  attr_accessor :kind
6331
6510
 
6511
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
6512
+ # offer, generic, giftcard, transit and boarding pass that should be
6513
+ # automatically attached to this offer object. If a user had saved this offer,
6514
+ # then these linked_object_ids would be automatically pushed to the user's
6515
+ # wallet (unless they turned off the setting to receive such linked passes).
6516
+ # Make sure that objects present in linked_object_ids are already inserted - if
6517
+ # not, calls would fail. Once linked, the linked objects cannot be unlinked. You
6518
+ # cannot link objects belonging to another issuer. There is a limit to the
6519
+ # number of objects that can be linked to a single object. After the limit is
6520
+ # reached, new linked objects in the call will be ignored silently. Object IDs
6521
+ # should follow the format issuer ID.identifier where the former is issued by
6522
+ # Google and the latter is chosen by you.
6523
+ # Corresponds to the JSON property `linkedObjectIds`
6524
+ # @return [Array<String>]
6525
+ attr_accessor :linked_object_ids
6526
+
6332
6527
  # Links module data. If links module data is also defined on the class, both
6333
6528
  # will be displayed.
6334
6529
  # Corresponds to the JSON property `linksModuleData`
@@ -6390,6 +6585,11 @@ module Google
6390
6585
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
6391
6586
  attr_accessor :valid_time_interval
6392
6587
 
6588
+ # Optional value added module data. Maximum of ten on the object.
6589
+ # Corresponds to the JSON property `valueAddedModuleData`
6590
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
6591
+ attr_accessor :value_added_module_data
6592
+
6393
6593
  # Deprecated
6394
6594
  # Corresponds to the JSON property `version`
6395
6595
  # @return [Fixnum]
@@ -6414,6 +6614,7 @@ module Google
6414
6614
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
6415
6615
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
6416
6616
  @kind = args[:kind] if args.key?(:kind)
6617
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
6417
6618
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
6418
6619
  @locations = args[:locations] if args.key?(:locations)
6419
6620
  @messages = args[:messages] if args.key?(:messages)
@@ -6424,6 +6625,7 @@ module Google
6424
6625
  @state = args[:state] if args.key?(:state)
6425
6626
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
6426
6627
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
6628
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
6427
6629
  @version = args[:version] if args.key?(:version)
6428
6630
  end
6429
6631
  end
@@ -7785,6 +7987,12 @@ module Google
7785
7987
  # @return [String]
7786
7988
  attr_accessor :transit_type
7787
7989
 
7990
+ # Optional value added module data. Maximum of ten on the class. For a pass only
7991
+ # ten will be displayed, prioritizing those from the object.
7992
+ # Corresponds to the JSON property `valueAddedModuleData`
7993
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
7994
+ attr_accessor :value_added_module_data
7995
+
7788
7996
  # Deprecated
7789
7997
  # Corresponds to the JSON property `version`
7790
7998
  # @return [Fixnum]
@@ -7864,6 +8072,7 @@ module Google
7864
8072
  @text_modules_data = args[:text_modules_data] if args.key?(:text_modules_data)
7865
8073
  @transit_operator_name = args[:transit_operator_name] if args.key?(:transit_operator_name)
7866
8074
  @transit_type = args[:transit_type] if args.key?(:transit_type)
8075
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
7867
8076
  @version = args[:version] if args.key?(:version)
7868
8077
  @view_unlock_requirement = args[:view_unlock_requirement] if args.key?(:view_unlock_requirement)
7869
8078
  @watermark = args[:watermark] if args.key?(:watermark)
@@ -8039,6 +8248,22 @@ module Google
8039
8248
  # @return [Google::Apis::WalletobjectsV1::InfoModuleData]
8040
8249
  attr_accessor :info_module_data
8041
8250
 
8251
+ # linked_object_ids are a list of other objects such as event ticket, loyalty,
8252
+ # offer, generic, giftcard, transit and boarding pass that should be
8253
+ # automatically attached to this transit object. If a user had saved this
8254
+ # transit card, then these linked_object_ids would be automatically pushed to
8255
+ # the user's wallet (unless they turned off the setting to receive such linked
8256
+ # passes). Make sure that objects present in linked_object_ids are already
8257
+ # inserted - if not, calls would fail. Once linked, the linked objects cannot be
8258
+ # unlinked. You cannot link objects belonging to another issuer. There is a
8259
+ # limit to the number of objects that can be linked to a single object. After
8260
+ # the limit is reached, new linked objects in the call will be ignored silently.
8261
+ # Object IDs should follow the format issuer ID. identifier where the former is
8262
+ # issued by Google and the latter is chosen by you.
8263
+ # Corresponds to the JSON property `linkedObjectIds`
8264
+ # @return [Array<String>]
8265
+ attr_accessor :linked_object_ids
8266
+
8042
8267
  # Links module data. If links module data is also defined on the class, both
8043
8268
  # will be displayed.
8044
8269
  # Corresponds to the JSON property `linksModuleData`
@@ -8163,6 +8388,11 @@ module Google
8163
8388
  # @return [Google::Apis::WalletobjectsV1::TimeInterval]
8164
8389
  attr_accessor :valid_time_interval
8165
8390
 
8391
+ # Optional value added module data. Maximum of ten on the object.
8392
+ # Corresponds to the JSON property `valueAddedModuleData`
8393
+ # @return [Array<Google::Apis::WalletobjectsV1::ValueAddedModuleData>]
8394
+ attr_accessor :value_added_module_data
8395
+
8166
8396
  # Deprecated
8167
8397
  # Corresponds to the JSON property `version`
8168
8398
  # @return [Fixnum]
@@ -8192,6 +8422,7 @@ module Google
8192
8422
  @id = args[:id] if args.key?(:id)
8193
8423
  @image_modules_data = args[:image_modules_data] if args.key?(:image_modules_data)
8194
8424
  @info_module_data = args[:info_module_data] if args.key?(:info_module_data)
8425
+ @linked_object_ids = args[:linked_object_ids] if args.key?(:linked_object_ids)
8195
8426
  @links_module_data = args[:links_module_data] if args.key?(:links_module_data)
8196
8427
  @locations = args[:locations] if args.key?(:locations)
8197
8428
  @messages = args[:messages] if args.key?(:messages)
@@ -8212,6 +8443,7 @@ module Google
8212
8443
  @trip_id = args[:trip_id] if args.key?(:trip_id)
8213
8444
  @trip_type = args[:trip_type] if args.key?(:trip_type)
8214
8445
  @valid_time_interval = args[:valid_time_interval] if args.key?(:valid_time_interval)
8446
+ @value_added_module_data = args[:value_added_module_data] if args.key?(:value_added_module_data)
8215
8447
  @version = args[:version] if args.key?(:version)
8216
8448
  end
8217
8449
  end
@@ -8403,6 +8635,61 @@ module Google
8403
8635
  @uri = args[:uri] if args.key?(:uri)
8404
8636
  end
8405
8637
  end
8638
+
8639
+ # Data for Value Added module. Required fields are header and uri.
8640
+ class ValueAddedModuleData
8641
+ include Google::Apis::Core::Hashable
8642
+
8643
+ # Body to be displayed on the module. Character limit is 50 and longer strings
8644
+ # will be truncated.
8645
+ # Corresponds to the JSON property `body`
8646
+ # @return [Google::Apis::WalletobjectsV1::LocalizedString]
8647
+ attr_accessor :body
8648
+
8649
+ # Header to be displayed on the module. Character limit is 60 and longer strings
8650
+ # will be truncated.
8651
+ # Corresponds to the JSON property `header`
8652
+ # @return [Google::Apis::WalletobjectsV1::LocalizedString]
8653
+ attr_accessor :header
8654
+
8655
+ # Wrapping type for Google hosted images. Next ID: 7
8656
+ # Corresponds to the JSON property `image`
8657
+ # @return [Google::Apis::WalletobjectsV1::Image]
8658
+ attr_accessor :image
8659
+
8660
+ # The index for sorting the modules. Modules with a lower sort index are shown
8661
+ # before modules with a higher sort index. If unspecified, the sort index is
8662
+ # assumed to be INT_MAX. For two modules with the same index, the sorting
8663
+ # behavior is undefined.
8664
+ # Corresponds to the JSON property `sortIndex`
8665
+ # @return [Fixnum]
8666
+ attr_accessor :sort_index
8667
+
8668
+ # URI that the module leads to on click. This can be a web link or a deep link
8669
+ # as mentioned in https://developer.android.com/training/app-links/deep-linking.
8670
+ # Corresponds to the JSON property `uri`
8671
+ # @return [String]
8672
+ attr_accessor :uri
8673
+
8674
+ # Constraints that all must be met for the module to be shown.
8675
+ # Corresponds to the JSON property `viewConstraints`
8676
+ # @return [Google::Apis::WalletobjectsV1::ModuleViewConstraints]
8677
+ attr_accessor :view_constraints
8678
+
8679
+ def initialize(**args)
8680
+ update!(**args)
8681
+ end
8682
+
8683
+ # Update properties of this object
8684
+ def update!(**args)
8685
+ @body = args[:body] if args.key?(:body)
8686
+ @header = args[:header] if args.key?(:header)
8687
+ @image = args[:image] if args.key?(:image)
8688
+ @sort_index = args[:sort_index] if args.key?(:sort_index)
8689
+ @uri = args[:uri] if args.key?(:uri)
8690
+ @view_constraints = args[:view_constraints] if args.key?(:view_constraints)
8691
+ end
8692
+ end
8406
8693
  end
8407
8694
  end
8408
8695
  end
@@ -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.14.0"
19
+ GEM_VERSION = "0.16.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 = "20240726"
25
+ REVISION = "20240927"
26
26
  end
27
27
  end
28
28
  end
@@ -628,6 +628,12 @@ module Google
628
628
  include Google::Apis::Core::JsonObjectSupport
629
629
  end
630
630
 
631
+ class ModuleViewConstraints
632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
633
+
634
+ include Google::Apis::Core::JsonObjectSupport
635
+ end
636
+
631
637
  class Money
632
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
633
639
 
@@ -892,6 +898,12 @@ module Google
892
898
  include Google::Apis::Core::JsonObjectSupport
893
899
  end
894
900
 
901
+ class ValueAddedModuleData
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
895
907
  class ActivationOptions
896
908
  # @private
897
909
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1358,6 +1370,8 @@ module Google
1358
1370
 
1359
1371
  collection :text_modules_data, as: 'textModulesData', class: Google::Apis::WalletobjectsV1::TextModuleData, decorator: Google::Apis::WalletobjectsV1::TextModuleData::Representation
1360
1372
 
1373
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1374
+
1361
1375
  property :venue, as: 'venue', class: Google::Apis::WalletobjectsV1::EventVenue, decorator: Google::Apis::WalletobjectsV1::EventVenue::Representation
1362
1376
 
1363
1377
  property :version, :numeric_string => true, as: 'version'
@@ -1413,6 +1427,7 @@ module Google
1413
1427
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
1414
1428
 
1415
1429
  property :kind, as: 'kind'
1430
+ collection :linked_object_ids, as: 'linkedObjectIds'
1416
1431
  collection :linked_offer_ids, as: 'linkedOfferIds'
1417
1432
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
1418
1433
 
@@ -1440,6 +1455,8 @@ module Google
1440
1455
 
1441
1456
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
1442
1457
 
1458
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1459
+
1443
1460
  property :version, :numeric_string => true, as: 'version'
1444
1461
  end
1445
1462
  end
@@ -1579,6 +1596,8 @@ module Google
1579
1596
 
1580
1597
  collection :text_modules_data, as: 'textModulesData', class: Google::Apis::WalletobjectsV1::TextModuleData, decorator: Google::Apis::WalletobjectsV1::TextModuleData::Representation
1581
1598
 
1599
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1600
+
1582
1601
  property :version, :numeric_string => true, as: 'version'
1583
1602
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
1584
1603
  property :word_mark, as: 'wordMark', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -1644,6 +1663,7 @@ module Google
1644
1663
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
1645
1664
 
1646
1665
  property :kind, as: 'kind'
1666
+ collection :linked_object_ids, as: 'linkedObjectIds'
1647
1667
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
1648
1668
 
1649
1669
  collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
@@ -1667,6 +1687,8 @@ module Google
1667
1687
 
1668
1688
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
1669
1689
 
1690
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1691
+
1670
1692
  property :version, :numeric_string => true, as: 'version'
1671
1693
  end
1672
1694
  end
@@ -1722,6 +1744,8 @@ module Google
1722
1744
 
1723
1745
  collection :text_modules_data, as: 'textModulesData', class: Google::Apis::WalletobjectsV1::TextModuleData, decorator: Google::Apis::WalletobjectsV1::TextModuleData::Representation
1724
1746
 
1747
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1748
+
1725
1749
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
1726
1750
  end
1727
1751
  end
@@ -1766,6 +1790,7 @@ module Google
1766
1790
  property :id, as: 'id'
1767
1791
  collection :image_modules_data, as: 'imageModulesData', class: Google::Apis::WalletobjectsV1::ImageModuleData, decorator: Google::Apis::WalletobjectsV1::ImageModuleData::Representation
1768
1792
 
1793
+ collection :linked_object_ids, as: 'linkedObjectIds'
1769
1794
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
1770
1795
 
1771
1796
  property :logo, as: 'logo', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -1788,6 +1813,8 @@ module Google
1788
1813
 
1789
1814
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
1790
1815
 
1816
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1817
+
1791
1818
  property :wide_logo, as: 'wideLogo', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
1792
1819
 
1793
1820
  end
@@ -1867,6 +1894,8 @@ module Google
1867
1894
 
1868
1895
  collection :text_modules_data, as: 'textModulesData', class: Google::Apis::WalletobjectsV1::TextModuleData, decorator: Google::Apis::WalletobjectsV1::TextModuleData::Representation
1869
1896
 
1897
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1898
+
1870
1899
  property :version, :numeric_string => true, as: 'version'
1871
1900
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
1872
1901
  property :wide_program_logo, as: 'wideProgramLogo', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -1923,6 +1952,7 @@ module Google
1923
1952
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
1924
1953
 
1925
1954
  property :kind, as: 'kind'
1955
+ collection :linked_object_ids, as: 'linkedObjectIds'
1926
1956
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
1927
1957
 
1928
1958
  collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
@@ -1942,6 +1972,8 @@ module Google
1942
1972
 
1943
1973
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
1944
1974
 
1975
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
1976
+
1945
1977
  property :version, :numeric_string => true, as: 'version'
1946
1978
  end
1947
1979
  end
@@ -2197,6 +2229,8 @@ module Google
2197
2229
 
2198
2230
  collection :text_modules_data, as: 'textModulesData', class: Google::Apis::WalletobjectsV1::TextModuleData, decorator: Google::Apis::WalletobjectsV1::TextModuleData::Representation
2199
2231
 
2232
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
2233
+
2200
2234
  property :version, :numeric_string => true, as: 'version'
2201
2235
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
2202
2236
  property :wide_program_logo, as: 'wideProgramLogo', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -2249,6 +2283,7 @@ module Google
2249
2283
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
2250
2284
 
2251
2285
  property :kind, as: 'kind'
2286
+ collection :linked_object_ids, as: 'linkedObjectIds'
2252
2287
  collection :linked_offer_ids, as: 'linkedOfferIds'
2253
2288
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
2254
2289
 
@@ -2272,6 +2307,8 @@ module Google
2272
2307
 
2273
2308
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
2274
2309
 
2310
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
2311
+
2275
2312
  property :version, :numeric_string => true, as: 'version'
2276
2313
  end
2277
2314
  end
@@ -2410,6 +2447,14 @@ module Google
2410
2447
  end
2411
2448
  end
2412
2449
 
2450
+ class ModuleViewConstraints
2451
+ # @private
2452
+ class Representation < Google::Apis::Core::JsonRepresentation
2453
+ property :display_interval, as: 'displayInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
2454
+
2455
+ end
2456
+ end
2457
+
2413
2458
  class Money
2414
2459
  # @private
2415
2460
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2499,6 +2544,8 @@ module Google
2499
2544
  property :title, as: 'title'
2500
2545
  property :title_image, as: 'titleImage', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
2501
2546
 
2547
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
2548
+
2502
2549
  property :version, :numeric_string => true, as: 'version'
2503
2550
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
2504
2551
  property :wide_title_image, as: 'wideTitleImage', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -2549,6 +2596,7 @@ module Google
2549
2596
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
2550
2597
 
2551
2598
  property :kind, as: 'kind'
2599
+ collection :linked_object_ids, as: 'linkedObjectIds'
2552
2600
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
2553
2601
 
2554
2602
  collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
@@ -2567,6 +2615,8 @@ module Google
2567
2615
 
2568
2616
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
2569
2617
 
2618
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
2619
+
2570
2620
  property :version, :numeric_string => true, as: 'version'
2571
2621
  end
2572
2622
  end
@@ -2959,6 +3009,8 @@ module Google
2959
3009
  property :transit_operator_name, as: 'transitOperatorName', class: Google::Apis::WalletobjectsV1::LocalizedString, decorator: Google::Apis::WalletobjectsV1::LocalizedString::Representation
2960
3010
 
2961
3011
  property :transit_type, as: 'transitType'
3012
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
3013
+
2962
3014
  property :version, :numeric_string => true, as: 'version'
2963
3015
  property :view_unlock_requirement, as: 'viewUnlockRequirement'
2964
3016
  property :watermark, as: 'watermark', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
@@ -3020,6 +3072,7 @@ module Google
3020
3072
 
3021
3073
  property :info_module_data, as: 'infoModuleData', class: Google::Apis::WalletobjectsV1::InfoModuleData, decorator: Google::Apis::WalletobjectsV1::InfoModuleData::Representation
3022
3074
 
3075
+ collection :linked_object_ids, as: 'linkedObjectIds'
3023
3076
  property :links_module_data, as: 'linksModuleData', class: Google::Apis::WalletobjectsV1::LinksModuleData, decorator: Google::Apis::WalletobjectsV1::LinksModuleData::Representation
3024
3077
 
3025
3078
  collection :locations, as: 'locations', class: Google::Apis::WalletobjectsV1::LatLongPoint, decorator: Google::Apis::WalletobjectsV1::LatLongPoint::Representation
@@ -3052,6 +3105,8 @@ module Google
3052
3105
  property :trip_type, as: 'tripType'
3053
3106
  property :valid_time_interval, as: 'validTimeInterval', class: Google::Apis::WalletobjectsV1::TimeInterval, decorator: Google::Apis::WalletobjectsV1::TimeInterval::Representation
3054
3107
 
3108
+ collection :value_added_module_data, as: 'valueAddedModuleData', class: Google::Apis::WalletobjectsV1::ValueAddedModuleData, decorator: Google::Apis::WalletobjectsV1::ValueAddedModuleData::Representation
3109
+
3055
3110
  property :version, :numeric_string => true, as: 'version'
3056
3111
  end
3057
3112
  end
@@ -3117,6 +3172,22 @@ module Google
3117
3172
  property :uri, as: 'uri'
3118
3173
  end
3119
3174
  end
3175
+
3176
+ class ValueAddedModuleData
3177
+ # @private
3178
+ class Representation < Google::Apis::Core::JsonRepresentation
3179
+ property :body, as: 'body', class: Google::Apis::WalletobjectsV1::LocalizedString, decorator: Google::Apis::WalletobjectsV1::LocalizedString::Representation
3180
+
3181
+ property :header, as: 'header', class: Google::Apis::WalletobjectsV1::LocalizedString, decorator: Google::Apis::WalletobjectsV1::LocalizedString::Representation
3182
+
3183
+ property :image, as: 'image', class: Google::Apis::WalletobjectsV1::Image, decorator: Google::Apis::WalletobjectsV1::Image::Representation
3184
+
3185
+ property :sort_index, as: 'sortIndex'
3186
+ property :uri, as: 'uri'
3187
+ property :view_constraints, as: 'viewConstraints', class: Google::Apis::WalletobjectsV1::ModuleViewConstraints, decorator: Google::Apis::WalletobjectsV1::ModuleViewConstraints::Representation
3188
+
3189
+ end
3190
+ end
3120
3191
  end
3121
3192
  end
3122
3193
  end
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.14.0
4
+ version: 0.16.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-04 00:00:00.000000000 Z
11
+ date: 2024-09-29 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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-walletobjects_v1/v0.16.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: []