Skip to content

Commit 712add8

Browse files
feat: Automated regeneration of AuthorizedBuyersMarketplace client (googleapis#12779)
Auto-created at 2025-01-08 13:11:50 +0000 using the toys pull request generator.
1 parent 7e5371e commit 712add8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

clients/authorized_buyers_marketplace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_authorized_buyers_marketplace, "~> 0.6"}]
14+
[{:google_api_authorized_buyers_marketplace, "~> 0.7"}]
1515
end
1616
```
1717

clients/authorized_buyers_marketplace/lib/google_api/authorized_buyers_marketplace/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1 do
2020
API client metadata for GoogleApi.AuthorizedBuyersMarketplace.V1.
2121
"""
2222

23-
@discovery_revision "20241120"
23+
@discovery_revision "20250107"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/authorized_buyers_marketplace/lib/google_api/authorized_buyers_marketplace/v1/model/auction_package.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do
2323
2424
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Time the auction package was created.
2525
* `creator` (*type:* `String.t`, *default:* `nil`) - Output only. The buyer that created this auction package. Format: `buyers/{buyerAccountId}`
26+
* `dealOwnerSeatId` (*type:* `String.t`, *default:* `nil`) - Output only. If set, this field contains the DSP specific seat id set by the media planner account that is considered the owner of this deal. The seat ID is in the calling DSP's namespace.
2627
* `description` (*type:* `String.t`, *default:* `nil`) - Output only. A description of the auction package.
2728
* `displayName` (*type:* `String.t`, *default:* `nil`) - The display_name assigned to the auction package.
28-
* `eligibleSeatIds` (*type:* `list(String.t)`, *default:* `nil`) - Output only. If set, this field contains the list of DSP specific seat ids set by media planners that are eligible to transact on this deal. The seat ID is in the calling DSP's namespace.
29+
* `eligibleSeatIds` (*type:* `list(String.t)`, *default:* `nil`) - Output only. If set, this field identifies a seat that the media planner selected as the owner of this auction package. This is a seat ID in the DSP's namespace that was provided to the media planner.
2930
* `name` (*type:* `String.t`, *default:* `nil`) - Immutable. The unique identifier for the auction package. Format: `buyers/{accountId}/auctionPackages/{auctionPackageId}` The auction_package_id part of name is sent in the BidRequest to all RTB bidders and is returned as deal_id by the bidder in the BidResponse.
3031
* `subscribedBuyers` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The list of buyers that are subscribed to the AuctionPackage. This field is only populated when calling as a bidder. Format: `buyers/{buyerAccountId}`
3132
* `subscribedClients` (*type:* `list(String.t)`, *default:* `nil`) - Output only. When calling as a buyer, the list of clients of the current buyer that are subscribed to the AuctionPackage. When calling as a bidder, the list of clients that are subscribed to the AuctionPackage owned by the bidder or its buyers. Format: `buyers/{buyerAccountId}/clients/{clientAccountId}`
@@ -38,6 +39,7 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do
3839
@type t :: %__MODULE__{
3940
:createTime => DateTime.t() | nil,
4041
:creator => String.t() | nil,
42+
:dealOwnerSeatId => String.t() | nil,
4143
:description => String.t() | nil,
4244
:displayName => String.t() | nil,
4345
:eligibleSeatIds => list(String.t()) | nil,
@@ -51,6 +53,7 @@ defmodule GoogleApi.AuthorizedBuyersMarketplace.V1.Model.AuctionPackage do
5153

5254
field(:createTime, as: DateTime)
5355
field(:creator)
56+
field(:dealOwnerSeatId)
5457
field(:description)
5558
field(:displayName)
5659
field(:eligibleSeatIds, type: :list)

clients/authorized_buyers_marketplace/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.AuthorizedBuyersMarketplace.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.6.2"
21+
@version "0.7.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)