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 @@ -38032,6 +38032,7 @@
"/androidpublisher:v3/Order/orderId": order_id
"/androidpublisher:v3/Order/pointsDetails": points_details
"/androidpublisher:v3/Order/purchaseToken": purchase_token
"/androidpublisher:v3/Order/salesChannel": sales_channel
"/androidpublisher:v3/Order/state": state
"/androidpublisher:v3/Order/tax": tax
"/androidpublisher:v3/Order/total": total
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-androidpublisher_v3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-androidpublisher_v3

### v0.90.0 (2025-11-30)

* Regenerated from discovery document revision 20251124

### v0.89.0 (2025-11-23)

* Regenerated from discovery document revision 20251119
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5726,6 +5726,11 @@ class Order
# @return [String]
attr_accessor :purchase_token

# The originating sales channel of the order.
# Corresponds to the JSON property `salesChannel`
# @return [String]
attr_accessor :sales_channel

# The state of the order.
# Corresponds to the JSON property `state`
# @return [String]
Expand Down Expand Up @@ -5757,6 +5762,7 @@ def update!(**args)
@order_id = args[:order_id] if args.key?(:order_id)
@points_details = args[:points_details] if args.key?(:points_details)
@purchase_token = args[:purchase_token] if args.key?(:purchase_token)
@sales_channel = args[:sales_channel] if args.key?(:sales_channel)
@state = args[:state] if args.key?(:state)
@tax = args[:tax] if args.key?(:tax)
@total = args[:total] if args.key?(:total)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module AndroidpublisherV3
# Version of the google-apis-androidpublisher_v3 gem
GEM_VERSION = "0.89.0"
GEM_VERSION = "0.90.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251119"
REVISION = "20251124"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -3712,6 +3712,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :points_details, as: 'pointsDetails', class: Google::Apis::AndroidpublisherV3::PointsDetails, decorator: Google::Apis::AndroidpublisherV3::PointsDetails::Representation

property :purchase_token, as: 'purchaseToken'
property :sales_channel, as: 'salesChannel'
property :state, as: 'state'
property :tax, as: 'tax', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation

Expand Down