Struct gapi_grpc::google::ads::googleads::v5::common::OfflineUserAddressInfo[][src]

pub struct OfflineUserAddressInfo {
    pub hashed_first_name: Option<String>,
    pub hashed_last_name: Option<String>,
    pub city: Option<String>,
    pub state: Option<String>,
    pub country_code: Option<String>,
    pub postal_code: Option<String>,
}

Address identifier of offline data.

Fields

hashed_first_name: Option<String>

First name of the user, which is hashed as SHA-256 after normalized (Lowercase all characters; Remove any extra spaces before, after, and in between).

hashed_last_name: Option<String>

Last name of the user, which is hashed as SHA-256 after normalized (lower case only and no punctuation).

city: Option<String>

City of the address. Only accepted for Store Sales Direct data.

state: Option<String>

State code of the address. Only accepted for Store Sales Direct data.

country_code: Option<String>

2-letter country code in ISO-3166-1 alpha-2 of the user’s address.

postal_code: Option<String>

Postal code of the user’s address.

Trait Implementations

impl Clone for OfflineUserAddressInfo[src]

impl Debug for OfflineUserAddressInfo[src]

impl Default for OfflineUserAddressInfo[src]

impl Message for OfflineUserAddressInfo[src]

impl PartialEq<OfflineUserAddressInfo> for OfflineUserAddressInfo[src]

impl StructuralPartialEq for OfflineUserAddressInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for OfflineUserAddressInfo

impl Send for OfflineUserAddressInfo

impl Sync for OfflineUserAddressInfo

impl Unpin for OfflineUserAddressInfo

impl UnwindSafe for OfflineUserAddressInfo

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]