Struct google_api_proto::google::ads::googleads::v17::resources::OfflineConversionUploadConversionActionSummary
source · pub struct OfflineConversionUploadConversionActionSummary {
pub resource_name: String,
pub client: i32,
pub conversion_action_id: i64,
pub conversion_action_name: String,
pub status: i32,
pub total_event_count: i64,
pub successful_event_count: i64,
pub pending_event_count: i64,
pub last_upload_date_time: String,
pub daily_summaries: Vec<OfflineConversionSummary>,
pub job_summaries: Vec<OfflineConversionSummary>,
pub alerts: Vec<OfflineConversionAlert>,
}
Expand description
Offline conversion upload summary at conversion action level.
Fields§
§resource_name: String
Output only. The resource name of the offline conversion upload summary at conversion action level. Offline conversion upload conversion action summary resource names have the form:
customers/{customer_id}/offlineConversionUploadConversionActionSummaries/{conversion_action_id}~{client}
client: i32
Output only. Client type of the upload event.
conversion_action_id: i64
Output only. Conversion action id.
conversion_action_name: String
Output only. The name of the conversion action.
status: i32
Output only. Overall status for offline conversion upload conversion action summary. Status is generated from most recent calendar day with upload stats.
total_event_count: i64
Output only. Total count of uploaded events.
successful_event_count: i64
Output only. Total count of successful uploaded events.
pending_event_count: i64
Output only. Total count of pending uploaded events.
last_upload_date_time: String
Output only. Date for the latest upload batch. The format is “yyyy-mm-dd hh:mm:ss”, and it’s in the time zone of the Google Ads account.
daily_summaries: Vec<OfflineConversionSummary>
Output only. Summary of history stats by last N days.
job_summaries: Vec<OfflineConversionSummary>
Output only. Summary of history stats by last N jobs.
alerts: Vec<OfflineConversionAlert>
Output only. Details for each error code. Alerts are generated from most recent calendar day with upload stats.
Implementations§
source§impl OfflineConversionUploadConversionActionSummary
impl OfflineConversionUploadConversionActionSummary
sourcepub fn client(&self) -> OfflineEventUploadClient
pub fn client(&self) -> OfflineEventUploadClient
Returns the enum value of client
, or the default if the field is set to an invalid enum value.
sourcepub fn set_client(&mut self, value: OfflineEventUploadClient)
pub fn set_client(&mut self, value: OfflineEventUploadClient)
Sets client
to the provided enum value.
sourcepub fn status(&self) -> OfflineConversionDiagnosticStatus
pub fn status(&self) -> OfflineConversionDiagnosticStatus
Returns the enum value of status
, or the default if the field is set to an invalid enum value.
sourcepub fn set_status(&mut self, value: OfflineConversionDiagnosticStatus)
pub fn set_status(&mut self, value: OfflineConversionDiagnosticStatus)
Sets status
to the provided enum value.
Trait Implementations§
source§impl Clone for OfflineConversionUploadConversionActionSummary
impl Clone for OfflineConversionUploadConversionActionSummary
source§fn clone(&self) -> OfflineConversionUploadConversionActionSummary
fn clone(&self) -> OfflineConversionUploadConversionActionSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Message for OfflineConversionUploadConversionActionSummary
impl Message for OfflineConversionUploadConversionActionSummary
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for OfflineConversionUploadConversionActionSummary
impl PartialEq for OfflineConversionUploadConversionActionSummary
source§fn eq(&self, other: &OfflineConversionUploadConversionActionSummary) -> bool
fn eq(&self, other: &OfflineConversionUploadConversionActionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OfflineConversionUploadConversionActionSummary
Auto Trait Implementations§
impl Freeze for OfflineConversionUploadConversionActionSummary
impl RefUnwindSafe for OfflineConversionUploadConversionActionSummary
impl Send for OfflineConversionUploadConversionActionSummary
impl Sync for OfflineConversionUploadConversionActionSummary
impl Unpin for OfflineConversionUploadConversionActionSummary
impl UnwindSafe for OfflineConversionUploadConversionActionSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request