pub struct Customer {
Show 24 fields pub resource_name: String, pub id: Option<i64>, pub descriptive_name: Option<String>, pub currency_code: Option<String>, pub time_zone: Option<String>, pub tracking_url_template: Option<String>, pub final_url_suffix: Option<String>, pub auto_tagging_enabled: Option<bool>, pub has_partners_badge: Option<bool>, pub manager: Option<bool>, pub test_account: Option<bool>, pub call_reporting_setting: Option<CallReportingSetting>, pub conversion_tracking_setting: Option<ConversionTrackingSetting>, pub remarketing_setting: Option<RemarketingSetting>, pub pay_per_conversion_eligibility_failure_reasons: Vec<i32>, pub optimization_score: Option<f64>, pub optimization_score_weight: f64, pub status: i32, pub location_asset_auto_migration_done: Option<bool>, pub image_asset_auto_migration_done: Option<bool>, pub location_asset_auto_migration_done_date_time: Option<String>, pub image_asset_auto_migration_done_date_time: Option<String>, pub customer_agreement_setting: Option<CustomerAgreementSetting>, pub local_services_settings: Option<LocalServicesSettings>,
}
Expand description

A customer.

Fields§

§resource_name: String

Immutable. The resource name of the customer. Customer resource names have the form:

customers/{customer_id}

§id: Option<i64>

Output only. The ID of the customer.

§descriptive_name: Option<String>

Optional, non-unique descriptive name of the customer.

§currency_code: Option<String>

Immutable. The currency in which the account operates. A subset of the currency codes from the ISO 4217 standard is supported.

§time_zone: Option<String>

Immutable. The local timezone ID of the customer.

§tracking_url_template: Option<String>

The URL template for constructing a tracking URL out of parameters. Only mutable in an update operation.

§final_url_suffix: Option<String>

The URL template for appending params to the final URL. Only mutable in an update operation.

§auto_tagging_enabled: Option<bool>

Whether auto-tagging is enabled for the customer.

§has_partners_badge: Option<bool>

Output only. Whether the Customer has a Partners program badge. If the Customer is not associated with the Partners program, this will be false. For more information, see https://support.google.com/partners/answer/3125774.

§manager: Option<bool>

Output only. Whether the customer is a manager.

§test_account: Option<bool>

Output only. Whether the customer is a test account.

§call_reporting_setting: Option<CallReportingSetting>

Call reporting setting for a customer. Only mutable in an update operation.

§conversion_tracking_setting: Option<ConversionTrackingSetting>

Output only. Conversion tracking setting for a customer.

§remarketing_setting: Option<RemarketingSetting>

Output only. Remarketing setting for a customer.

§pay_per_conversion_eligibility_failure_reasons: Vec<i32>

Output only. Reasons why the customer is not eligible to use PaymentMode.CONVERSIONS. If the list is empty, the customer is eligible. This field is read-only.

§optimization_score: Option<f64>

Output only. Optimization score of the customer.

Optimization score is an estimate of how well a customer’s campaigns are set to perform. It ranges from 0% (0.0) to 100% (1.0). This field is null for all manager customers, and for unscored non-manager customers.

See “About optimization score” at https://support.google.com/google-ads/answer/9061546.

This field is read-only.

§optimization_score_weight: f64

Output only. Optimization score weight of the customer.

Optimization score weight can be used to compare/aggregate optimization scores across multiple non-manager customers. The aggregate optimization score of a manager is computed as the sum over all of their customers of Customer.optimization_score * Customer.optimization_score_weight. This field is 0 for all manager customers, and for unscored non-manager customers.

This field is read-only.

§status: i32

Output only. The status of the customer.

§location_asset_auto_migration_done: Option<bool>

Output only. True if feed based location has been migrated to asset based location.

§image_asset_auto_migration_done: Option<bool>

Output only. True if feed based image has been migrated to asset based image.

§location_asset_auto_migration_done_date_time: Option<String>

Output only. Timestamp of migration from feed based location to asset base location in yyyy-MM-dd HH:mm:ss format.

§image_asset_auto_migration_done_date_time: Option<String>

Output only. Timestamp of migration from feed based image to asset base image in yyyy-MM-dd HH:mm:ss format.

§customer_agreement_setting: Option<CustomerAgreementSetting>

Output only. Customer Agreement Setting for a customer.

§local_services_settings: Option<LocalServicesSettings>

Output only. Settings for Local Services customer.

Implementations§

source§

impl Customer

source

pub fn pay_per_conversion_eligibility_failure_reasons( &self ) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<CustomerPayPerConversionEligibilityFailureReason>>

Returns an iterator which yields the valid enum values contained in pay_per_conversion_eligibility_failure_reasons.

source

pub fn push_pay_per_conversion_eligibility_failure_reasons( &mut self, value: CustomerPayPerConversionEligibilityFailureReason )

Appends the provided enum value to pay_per_conversion_eligibility_failure_reasons.

source

pub fn id(&self) -> i64

Returns the value of id, or the default value if id is unset.

source

pub fn descriptive_name(&self) -> &str

Returns the value of descriptive_name, or the default value if descriptive_name is unset.

source

pub fn currency_code(&self) -> &str

Returns the value of currency_code, or the default value if currency_code is unset.

source

pub fn time_zone(&self) -> &str

Returns the value of time_zone, or the default value if time_zone is unset.

source

pub fn tracking_url_template(&self) -> &str

Returns the value of tracking_url_template, or the default value if tracking_url_template is unset.

source

pub fn final_url_suffix(&self) -> &str

Returns the value of final_url_suffix, or the default value if final_url_suffix is unset.

source

pub fn auto_tagging_enabled(&self) -> bool

Returns the value of auto_tagging_enabled, or the default value if auto_tagging_enabled is unset.

source

pub fn has_partners_badge(&self) -> bool

Returns the value of has_partners_badge, or the default value if has_partners_badge is unset.

source

pub fn manager(&self) -> bool

Returns the value of manager, or the default value if manager is unset.

source

pub fn test_account(&self) -> bool

Returns the value of test_account, or the default value if test_account is unset.

source

pub fn optimization_score(&self) -> f64

Returns the value of optimization_score, or the default value if optimization_score is unset.

source

pub fn status(&self) -> CustomerStatus

Returns the enum value of status, or the default if the field is set to an invalid enum value.

source

pub fn set_status(&mut self, value: CustomerStatus)

Sets status to the provided enum value.

source

pub fn location_asset_auto_migration_done(&self) -> bool

Returns the value of location_asset_auto_migration_done, or the default value if location_asset_auto_migration_done is unset.

source

pub fn image_asset_auto_migration_done(&self) -> bool

Returns the value of image_asset_auto_migration_done, or the default value if image_asset_auto_migration_done is unset.

source

pub fn location_asset_auto_migration_done_date_time(&self) -> &str

Returns the value of location_asset_auto_migration_done_date_time, or the default value if location_asset_auto_migration_done_date_time is unset.

source

pub fn image_asset_auto_migration_done_date_time(&self) -> &str

Returns the value of image_asset_auto_migration_done_date_time, or the default value if image_asset_auto_migration_done_date_time is unset.

Trait Implementations§

source§

impl Clone for Customer

source§

fn clone(&self) -> Customer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Customer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Customer

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Message for Customer

source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
source§

impl PartialEq for Customer

source§

fn eq(&self, other: &Customer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Customer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more