[][src]Struct google_displayvideo1::AdvertiserGeneralConfig

pub struct AdvertiserGeneralConfig {
    pub time_zone: Option<String>,
    pub currency_code: Option<String>,
    pub domain_url: Option<String>,
}

General settings of an advertiser.

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

Fields

time_zone: Option<String>

Output only. The standard TZ database name of the advertiser's time zone. For example, America/New_York.

See more at: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

For CM hybrid advertisers, the time zone is the same as that of the associated CM account; for third-party only advertisers, the time zone is the same as that of the parent partner.

currency_code: Option<String>

Required. Immutable. Advertiser's currency in ISO 4217 format.

Accepted codes and the currencies they represent are:

Currency Code : Currency Name

  • ARS : Argentine Peso
  • AUD : Australian Dollar
  • BRL : Brazilian Real
  • CAD : Canadian Dollar
  • CHF : Swiss Franc
  • CLP : Chilean Peso
  • CNY : Chinese Yuan
  • COP : Colombian Peso
  • CZK : Czech Koruna
  • DKK : Danish Krone
  • EGP : Egyption Pound
  • EUR : Euro
  • GBP : British Pound
  • HKD : Hong Kong Dollar
  • HUF : Hungarian Forint
  • IDR : Indonesian Rupiah
  • ILS : Israeli Shekel
  • INR : Indian Rupee
  • JPY : Japanese Yen
  • KRW : South Korean Won
  • MXN : Mexican Pesos
  • MYR : Malaysian Ringgit
  • NGN : Nigerian Naira
  • NOK : Norwegian Krone
  • NZD : New Zealand Dollar
  • PEN : Peruvian Nuevo Sol
  • PLN : Polish Zloty
  • RON : New Romanian Leu
  • RUB : Russian Ruble
  • SEK : Swedish Krona
  • TRY : Turkish Lira
  • TWD : New Taiwan Dollar
  • USD : US Dollar
  • ZAR : South African Rand
domain_url: Option<String>

Required. The domain URL of the advertiser's primary website. The system will send this information to publishers that require website URL to associate a campaign with an advertiser.

Provide a URL with no path or query string, beginning with http: or https:. For example, http://www.example.com

Trait Implementations

impl Clone for AdvertiserGeneralConfig[src]

impl Debug for AdvertiserGeneralConfig[src]

impl Default for AdvertiserGeneralConfig[src]

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

impl Part for AdvertiserGeneralConfig[src]

impl Serialize for AdvertiserGeneralConfig[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, 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.

impl<T> Typeable for T where
    T: Any