Struct google_content2::AccountsCustomBatchRequestEntry[][src]

pub struct AccountsCustomBatchRequestEntry {
    pub batch_id: Option<u32>,
    pub account: Option<Account>,
    pub force: Option<bool>,
    pub account_id: Option<String>,
    pub method: Option<String>,
    pub overwrite: Option<bool>,
    pub merchant_id: Option<String>,
}

A batch entry encoding a single non-batch accounts request.

This type is not used in any activity, and only used as part of another schema.

Fields

An entry ID, unique within the batch request.

The account to create or update. Only defined if the method is insert or update.

Whether the account should be deleted if the account has offers. Only applicable if the method is delete.

The ID of the targeted account. Only defined if the method is get, delete or claimwebsite.

no description provided

Only applicable if the method is claimwebsite. Indicates whether or not to take the claim from another account in case there is a conflict.

The ID of the managing account.

Trait Implementations

impl Default for AccountsCustomBatchRequestEntry
[src]

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

impl Clone for AccountsCustomBatchRequestEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AccountsCustomBatchRequestEntry
[src]

Formats the value using the given formatter. Read more

impl Part for AccountsCustomBatchRequestEntry
[src]

Auto Trait Implementations