Class: Google::Apis::AuthorizedbuyersmarketplaceV1::AuctionPackage
- Inherits:
-
Object
- Object
- Google::Apis::AuthorizedbuyersmarketplaceV1::AuctionPackage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb more...
Overview
Defines a segment of inventory that buyer wants to buy. It's created by buyer and could be shared with multiple buyers.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#creator ⇒ String
Output only.
-
#description ⇒ String
Output only.
-
#display_name ⇒ String
The display_name assigned to the auction package.
-
#name ⇒ String
Immutable.
-
#subscribed_clients ⇒ Array<String>
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuctionPackage
constructor
A new instance of AuctionPackage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AuctionPackage
Returns a new instance of AuctionPackage.
192 193 194 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 192 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Time the auction package was created.
Corresponds to the JSON property createTime
153 154 155 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 153 def create_time @create_time end |
#creator ⇒ String
Output only. The buyer that created this auction package. Format: buyers/
buyerAccountId`
Corresponds to the JSON property
creator`
159 160 161 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 159 def creator @creator end |
#description ⇒ String
Output only. A description of the auction package.
Corresponds to the JSON property description
164 165 166 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 164 def description @description end |
#display_name ⇒ String
The display_name assigned to the auction package.
Corresponds to the JSON property displayName
169 170 171 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 169 def display_name @display_name end |
#name ⇒ String
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.
Corresponds to the JSON property
name`
177 178 179 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 177 def name @name end |
#subscribed_clients ⇒ Array<String>
Output only. The list of clients of the current buyer that are subscribed to
the AuctionPackage. Format: buyers/
buyerAccountId/clients/
clientAccountId`
Corresponds to the JSON property
subscribedClients`
183 184 185 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 183 def subscribed_clients @subscribed_clients end |
#update_time ⇒ String
Output only. Time the auction package was last updated. This value is only
increased when this auction package is updated but never when a buyer
subscribed.
Corresponds to the JSON property updateTime
190 191 192 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 190 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
197 198 199 200 201 202 203 204 205 |
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 197 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @creator = args[:creator] if args.key?(:creator) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @subscribed_clients = args[:subscribed_clients] if args.key?(:subscribed_clients) @update_time = args[:update_time] if args.key?(:update_time) end |