Struct google_adexchangebuyer1d4::EditAllOrderDealsRequest[][src]

pub struct EditAllOrderDealsRequest {
    pub deals: Option<Vec<MarketplaceDeal>>,
    pub proposal: Option<Proposal>,
    pub proposal_revision_number: Option<String>,
    pub update_action: Option<String>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

List of deals to edit. Service may perform 3 different operations based on comparison of deals in this list vs deals already persisted in database: 1. Add new deal to proposal If a deal in this list does not exist in the proposal, the service will create a new deal and add it to the proposal. Validation will follow AddOrderDealsRequest. 2. Update existing deal in the proposal If a deal in this list already exist in the proposal, the service will update that existing deal to this new deal in the request. Validation will follow UpdateOrderDealsRequest. 3. Delete deals from the proposal (just need the id) If a existing deal in the proposal is not present in this list, the service will delete that deal from the proposal. Validation will follow DeleteOrderDealsRequest.

If specified, also updates the proposal in the batch transaction. This is useful when the proposal and the deals need to be updated in one transaction.

The last known revision number for the proposal.

Indicates an optional action to take on the proposal

Trait Implementations

impl Default for EditAllOrderDealsRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for EditAllOrderDealsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EditAllOrderDealsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for EditAllOrderDealsRequest
[src]

Auto Trait Implementations