Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -261496,6 +261496,7 @@
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/attribute": attribute
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/changes": changes
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/changes/change": change
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/eventTime": event_time
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/expirationTime": expiration_time
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/managingAccount": managing_account
"/merchantapi:inventories_v1beta/ProductStatusChangeMessage/resource": resource
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-merchantapi_inventories_v1beta

### v0.3.0 (2025-02-26)

* Regenerated from discovery document revision 20250219
* Regenerated using generator version 0.16.0

### v0.2.0 (2024-12-02)

* Regenerated from discovery document revision 20241119
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,11 @@ class ProductStatusChangeMessage
# @return [Array<Google::Apis::MerchantapiInventoriesV1beta::ProductChange>]
attr_accessor :changes

# The time at which the event was generated.
# Corresponds to the JSON property `eventTime`
# @return [String]
attr_accessor :event_time

# The product expiration time. This field will not bet set if the notification
# is sent for a product deletion event.
# Corresponds to the JSON property `expirationTime`
Expand Down Expand Up @@ -387,6 +392,7 @@ def update!(**args)
@account = args[:account] if args.key?(:account)
@attribute = args[:attribute] if args.key?(:attribute)
@changes = args[:changes] if args.key?(:changes)
@event_time = args[:event_time] if args.key?(:event_time)
@expiration_time = args[:expiration_time] if args.key?(:expiration_time)
@managing_account = args[:managing_account] if args.key?(:managing_account)
@resource = args[:resource] if args.key?(:resource)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module MerchantapiInventoriesV1beta
# Version of the google-apis-merchantapi_inventories_v1beta gem
GEM_VERSION = "0.2.0"
GEM_VERSION = "0.3.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"
GENERATOR_VERSION = "0.16.0"

# Revision of the discovery document this client was generated from
REVISION = "20241119"
REVISION = "20250219"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :attribute, as: 'attribute'
collection :changes, as: 'changes', class: Google::Apis::MerchantapiInventoriesV1beta::ProductChange, decorator: Google::Apis::MerchantapiInventoriesV1beta::ProductChange::Representation

property :event_time, as: 'eventTime'
property :expiration_time, as: 'expirationTime'
property :managing_account, as: 'managingAccount'
property :resource, as: 'resource'
Expand Down