Struct gapi_grpc::google::ads::googleads::v6::resources::batch_job::BatchJobMetadata[][src]

pub struct BatchJobMetadata {
    pub creation_date_time: String,
    pub start_date_time: String,
    pub completion_date_time: String,
    pub estimated_completion_ratio: f64,
    pub operation_count: i64,
    pub executed_operation_count: i64,
}

Additional information about the batch job. This message is also used as metadata returned in batch job Long Running Operations.

Fields

creation_date_time: String

Output only. The time when this batch job was created. Formatted as yyyy-mm-dd hh:mm:ss. Example: “2018-03-05 09:15:00”

start_date_time: String

Output only. The time when this batch job started running. Formatted as yyyy-mm-dd hh:mm:ss. Example: “2018-03-05 09:15:30”

completion_date_time: String

Output only. The time when this batch job was completed. Formatted as yyyy-MM-dd HH:mm:ss. Example: “2018-03-05 09:16:00”

estimated_completion_ratio: f64

Output only. The fraction (between 0.0 and 1.0) of mutates that have been processed. This is empty if the job hasn’t started running yet.

operation_count: i64

Output only. The number of mutate operations in the batch job.

executed_operation_count: i64

Output only. The number of mutate operations executed by the batch job. Present only if the job has started running.

Trait Implementations

impl Clone for BatchJobMetadata[src]

impl Debug for BatchJobMetadata[src]

impl Default for BatchJobMetadata[src]

impl Message for BatchJobMetadata[src]

impl PartialEq<BatchJobMetadata> for BatchJobMetadata[src]

impl StructuralPartialEq for BatchJobMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for BatchJobMetadata

impl Send for BatchJobMetadata

impl Sync for BatchJobMetadata

impl Unpin for BatchJobMetadata

impl UnwindSafe for BatchJobMetadata

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]