Struct google_content2::AccountsCustomBatchResponseEntry[][src]

pub struct AccountsCustomBatchResponseEntry {
    pub batch_id: Option<u32>,
    pub account: Option<Account>,
    pub errors: Option<Errors>,
    pub link_status: Option<String>,
    pub kind: Option<String>,
}

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

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

Fields

The ID of the request entry this entry responds to.

The retrieved, created, or updated account. Not defined if the method was delete, claimwebsite or link.

A list of errors defined if and only if the request failed.

Deprecated. This field is never set.

Identifies what kind of resource this is. Value: the fixed string "content#accountsCustomBatchResponseEntry".

Trait Implementations

impl Default for AccountsCustomBatchResponseEntry
[src]

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

impl Clone for AccountsCustomBatchResponseEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AccountsCustomBatchResponseEntry
[src]

Formats the value using the given formatter. Read more

impl Part for AccountsCustomBatchResponseEntry
[src]

Auto Trait Implementations