Class: Google::Apis::AdexchangebuyerV1_4::UpdatePrivateAuctionProposalRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_4::UpdatePrivateAuctionProposalRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_4/classes.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #external_deal_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The externalDealId of the deal to be updated. 
- 
  
    
      #note  ⇒ Google::Apis::AdexchangebuyerV1_4::MarketplaceNote 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A proposal is associated with a bunch of notes which may optionally be associated with a deal and/or revision number. 
- 
  
    
      #proposal_revision_number  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current revision number of the proposal to be updated. 
- 
  
    
      #update_action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The proposed action on the private auction proposal. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpdatePrivateAuctionProposalRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UpdatePrivateAuctionProposalRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdatePrivateAuctionProposalRequest
Returns a new instance of UpdatePrivateAuctionProposalRequest
| 3672 3673 3674 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3672 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#external_deal_id ⇒ String
The externalDealId of the deal to be updated.
Corresponds to the JSON property externalDealId
| 3654 3655 3656 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3654 def external_deal_id @external_deal_id end | 
#note ⇒ Google::Apis::AdexchangebuyerV1_4::MarketplaceNote
A proposal is associated with a bunch of notes which may optionally be
associated with a deal and/or revision number.
Corresponds to the JSON property note
| 3660 3661 3662 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3660 def note @note end | 
#proposal_revision_number ⇒ Fixnum
The current revision number of the proposal to be updated.
Corresponds to the JSON property proposalRevisionNumber
| 3665 3666 3667 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3665 def proposal_revision_number @proposal_revision_number end | 
#update_action ⇒ String
The proposed action on the private auction proposal.
Corresponds to the JSON property updateAction
| 3670 3671 3672 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3670 def update_action @update_action end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3677 3678 3679 3680 3681 3682 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3677 def update!(**args) @external_deal_id = args[:external_deal_id] if args.key?(:external_deal_id) @note = args[:note] if args.key?(:note) @proposal_revision_number = args[:proposal_revision_number] if args.key?(:proposal_revision_number) @update_action = args[:update_action] if args.key?(:update_action) end |