googleads_rs::google::ads::googleads::v18::resources

Struct Customer

Source
pub struct Customer {
Show 25 fields pub resource_name: String, pub id: i64, pub descriptive_name: String, pub currency_code: String, pub time_zone: String, pub tracking_url_template: String, pub final_url_suffix: String, pub auto_tagging_enabled: bool, pub has_partners_badge: bool, pub manager: bool, pub test_account: 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: f64, pub optimization_score_weight: f64, pub status: i32, pub location_asset_auto_migration_done: bool, pub image_asset_auto_migration_done: bool, pub location_asset_auto_migration_done_date_time: String, pub image_asset_auto_migration_done_date_time: String, pub customer_agreement_setting: Option<CustomerAgreementSetting>, pub local_services_settings: Option<LocalServicesSettings>, pub video_brand_safety_suitability: i32,
}
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: i64

Output only. The ID of the customer.

§descriptive_name: String

Optional, non-unique descriptive name of the customer.

§currency_code: String

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

§time_zone: String

Immutable. The local timezone ID of the customer.

§tracking_url_template: String

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

§final_url_suffix: String

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

§auto_tagging_enabled: bool

Whether auto-tagging is enabled for the customer.

§has_partners_badge: 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: bool

Output only. Whether the customer is a manager.

§test_account: 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: 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: bool

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

§image_asset_auto_migration_done: bool

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

§location_asset_auto_migration_done_date_time: 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: 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.

§video_brand_safety_suitability: i32

Output only. Brand Safety setting at the account level. Allows for selecting an inventory type to show your ads on content that is the right fit for your brand. See https://support.google.com/google-ads/answer/7515513.

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 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 video_brand_safety_suitability(&self) -> BrandSafetySuitability

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

Source

pub fn set_video_brand_safety_suitability( &mut self, value: BrandSafetySuitability, )

Sets video_brand_safety_suitability to the provided enum value.

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

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

impl<T> Instrument for T

Source§

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

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

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,

Source§

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>,

Source§

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>,

Source§

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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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