Struct google_admob1::api::PublisherAccount[][src]

pub struct PublisherAccount {
    pub currency_code: Option<String>,
    pub name: Option<String>,
    pub publisher_id: Option<String>,
    pub reporting_time_zone: Option<String>,
}

A publisher account contains information relevant to the use of this API, such as the time zone used for the reports.

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

currency_code: Option<String>

Currency code of the earning-related metrics, which is the 3-letter code defined in ISO 4217. The daily average rate is used for the currency conversion.

name: Option<String>

Resource name of this account. Format is accounts/{publisher_id}.

publisher_id: Option<String>

The unique ID by which this publisher account can be identified in the API requests (for example, pub-1234567890).

reporting_time_zone: Option<String>

The time zone that is used in reports that are generated for this account. The value is a time-zone ID as specified by the CLDR project, for example, “America/Los_Angeles”.

Trait Implementations

impl Clone for PublisherAccount[src]

impl Debug for PublisherAccount[src]

impl Default for PublisherAccount[src]

impl<'de> Deserialize<'de> for PublisherAccount[src]

impl ResponseResult for PublisherAccount[src]

impl Serialize for PublisherAccount[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.