pub struct CampaignBudget {
Show 18 fields pub resource_name: String, pub id: Option<i64>, pub name: Option<String>, pub amount_micros: Option<i64>, pub total_amount_micros: Option<i64>, pub status: i32, pub delivery_method: i32, pub explicitly_shared: Option<bool>, pub reference_count: Option<i64>, pub has_recommended_budget: Option<bool>, pub recommended_budget_amount_micros: Option<i64>, pub period: i32, pub recommended_budget_estimated_change_weekly_clicks: Option<i64>, pub recommended_budget_estimated_change_weekly_cost_micros: Option<i64>, pub recommended_budget_estimated_change_weekly_interactions: Option<i64>, pub recommended_budget_estimated_change_weekly_views: Option<i64>, pub type: i32, pub aligned_bidding_strategy_id: i64,
}
Expand description

A campaign budget.

Fields§

§resource_name: String

Immutable. The resource name of the campaign budget. Campaign budget resource names have the form:

customers/{customer_id}/campaignBudgets/{campaign_budget_id}

§id: Option<i64>

Output only. The ID of the campaign budget.

A campaign budget is created using the CampaignBudgetService create operation and is assigned a budget ID. A budget ID can be shared across different campaigns; the system will then allocate the campaign budget among different campaigns to get optimum results.

§name: Option<String>

The name of the campaign budget.

When creating a campaign budget through CampaignBudgetService, every explicitly shared campaign budget must have a non-null, non-empty name. Campaign budgets that are not explicitly shared derive their name from the attached campaign’s name.

The length of this string must be between 1 and 255, inclusive, in UTF-8 bytes, (trimmed).

§amount_micros: Option<i64>

The amount of the budget, in the local currency for the account. Amount is specified in micros, where one million is equivalent to one currency unit. Monthly spend is capped at 30.4 times this amount.

§total_amount_micros: Option<i64>

The lifetime amount of the budget, in the local currency for the account. Amount is specified in micros, where one million is equivalent to one currency unit.

§status: i32

Output only. The status of this campaign budget. This field is read-only.

§delivery_method: i32

The delivery method that determines the rate at which the campaign budget is spent.

Defaults to STANDARD if unspecified in a create operation.

§explicitly_shared: Option<bool>

Specifies whether the budget is explicitly shared. Defaults to true if unspecified in a create operation.

If true, the budget was created with the purpose of sharing across one or more campaigns.

If false, the budget was created with the intention of only being used with a single campaign. The budget’s name and status will stay in sync with the campaign’s name and status. Attempting to share the budget with a second campaign will result in an error.

A non-shared budget can become an explicitly shared. The same operation must also assign the budget a name.

A shared campaign budget can never become non-shared.

§reference_count: Option<i64>

Output only. The number of campaigns actively using the budget.

This field is read-only.

§has_recommended_budget: Option<bool>

Output only. Indicates whether there is a recommended budget for this campaign budget.

This field is read-only.

§recommended_budget_amount_micros: Option<i64>

Output only. The recommended budget amount. If no recommendation is available, this will be set to the budget amount. Amount is specified in micros, where one million is equivalent to one currency unit.

This field is read-only.

§period: i32

Immutable. Period over which to spend the budget. Defaults to DAILY if not specified.

§recommended_budget_estimated_change_weekly_clicks: Option<i64>

Output only. The estimated change in weekly clicks if the recommended budget is applied.

This field is read-only.

§recommended_budget_estimated_change_weekly_cost_micros: Option<i64>

Output only. The estimated change in weekly cost in micros if the recommended budget is applied. One million is equivalent to one currency unit.

This field is read-only.

§recommended_budget_estimated_change_weekly_interactions: Option<i64>

Output only. The estimated change in weekly interactions if the recommended budget is applied.

This field is read-only.

§recommended_budget_estimated_change_weekly_views: Option<i64>

Output only. The estimated change in weekly views if the recommended budget is applied.

This field is read-only.

§type: i32

Immutable. The type of the campaign budget.

§aligned_bidding_strategy_id: i64

ID of the portfolio bidding strategy that this shared campaign budget is aligned with. When a bidding strategy and a campaign budget are aligned, they are attached to the same set of campaigns. After a campaign budget is aligned with a bidding strategy, campaigns that are added to the campaign budget must also use the aligned bidding strategy.

Implementations§

source§

impl CampaignBudget

source

pub fn status(&self) -> BudgetStatus

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: BudgetStatus)

Sets status to the provided enum value.

source

pub fn delivery_method(&self) -> BudgetDeliveryMethod

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

source

pub fn set_delivery_method(&mut self, value: BudgetDeliveryMethod)

Sets delivery_method to the provided enum value.

source

pub fn period(&self) -> BudgetPeriod

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

source

pub fn set_period(&mut self, value: BudgetPeriod)

Sets period to the provided enum value.

source

pub fn type(&self) -> BudgetType

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

source

pub fn set_type(&mut self, value: BudgetType)

Sets type to the provided enum value.

source

pub fn id(&self) -> i64

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

source

pub fn name(&self) -> &str

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

source

pub fn amount_micros(&self) -> i64

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

source

pub fn total_amount_micros(&self) -> i64

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

source

pub fn explicitly_shared(&self) -> bool

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

source

pub fn reference_count(&self) -> i64

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

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

source

pub fn recommended_budget_amount_micros(&self) -> i64

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

source

pub fn recommended_budget_estimated_change_weekly_clicks(&self) -> i64

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

source

pub fn recommended_budget_estimated_change_weekly_cost_micros(&self) -> i64

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

source

pub fn recommended_budget_estimated_change_weekly_interactions(&self) -> i64

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

source

pub fn recommended_budget_estimated_change_weekly_views(&self) -> i64

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

Trait Implementations§

source§

impl Clone for CampaignBudget

source§

fn clone(&self) -> CampaignBudget

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 CampaignBudget

source§

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

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

impl Default for CampaignBudget

source§

fn default() -> Self

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

impl Message for CampaignBudget

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 CampaignBudget

source§

fn eq(&self, other: &CampaignBudget) -> 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 CampaignBudget

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