[][src]Struct camunda_client::models::batch_dto::BatchDto

pub struct BatchDto {
    pub id: Option<String>,
    pub _type: Option<String>,
    pub total_jobs: Option<i32>,
    pub jobs_created: Option<i32>,
    pub batch_jobs_per_seed: Option<i32>,
    pub invocations_per_batch_job: Option<i32>,
    pub seed_job_definition_id: Option<String>,
    pub monitor_job_definition_id: Option<String>,
    pub batch_job_definition_id: Option<String>,
    pub suspended: Option<bool>,
    pub tenant_id: Option<String>,
    pub create_user_id: Option<String>,
}

Fields

id: Option<String>

The id of the batch.

_type: Option<String>

The type of the batch.

total_jobs: Option<i32>

The total jobs of a batch is the number of batch execution jobs required to complete the batch.

jobs_created: Option<i32>

The number of batch execution jobs already created by the seed job.

batch_jobs_per_seed: Option<i32>

The number of batch execution jobs created per seed job invocation. The batch seed job is invoked until it has created all batch execution jobs required by the batch (see totalJobs property).

invocations_per_batch_job: Option<i32>

Every batch execution job invokes the command executed by the batch invocationsPerBatchJob times. E.g., for a process instance migration batch this specifies the number of process instances which are migrated per batch execution job.

seed_job_definition_id: Option<String>

The job definition id for the seed jobs of this batch.

monitor_job_definition_id: Option<String>

The job definition id for the monitor jobs of this batch.

batch_job_definition_id: Option<String>

The job definition id for the batch execution jobs of this batch.

suspended: Option<bool>

Indicates whether this batch is suspended or not.

tenant_id: Option<String>

The tenant id of the batch.

create_user_id: Option<String>

The id of the user that created the batch.

Implementations

impl BatchDto[src]

pub fn new() -> BatchDto[src]

Trait Implementations

impl Clone for BatchDto[src]

impl Debug for BatchDto[src]

impl<'de> Deserialize<'de> for BatchDto[src]

impl PartialEq<BatchDto> for BatchDto[src]

impl Serialize for BatchDto[src]

impl StructuralPartialEq for BatchDto[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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