Ad Exchange Buyer API . marketplaceprivateauction

Instance Methods

close()

Close httplib2 connections.

updateproposal(privateAuctionId, body=None)

Update a given private auction proposal

Method Details

close()
Close httplib2 connections.
updateproposal(privateAuctionId, body=None)
Update a given private auction proposal

Args:
  privateAuctionId: string, The private auction id to be updated. (required)
  body: object, The request body.
    The object takes the form of:

{
  "externalDealId": "A String", # The externalDealId of the deal to be updated.
  "note": { # A proposal is associated with a bunch of notes which may optionally be associated with a deal and/or revision number. # Optional note to be added.
    "creatorRole": "A String", # The role of the person (buyer/seller) creating the note. (readonly)
    "dealId": "A String", # Notes can optionally be associated with a deal. (readonly, except on create)
    "kind": "adexchangebuyer#marketplaceNote", # Identifies what kind of resource this is. Value: the fixed string "adexchangebuyer#marketplaceNote".
    "note": "A String", # The actual note to attach. (readonly, except on create)
    "noteId": "A String", # The unique id for the note. (readonly)
    "proposalId": "A String", # The proposalId that a note is attached to. (readonly)
    "proposalRevisionNumber": "A String", # If the note is associated with a proposal revision number, then store that here. (readonly, except on create)
    "timestampMs": "A String", # The timestamp (ms since epoch) that this note was created. (readonly)
  },
  "proposalRevisionNumber": "A String", # The current revision number of the proposal to be updated.
  "updateAction": "A String", # The proposed action on the private auction proposal.
}