[][src]Struct firefly_iii::models::import_job_attributes::ImportJobAttributes

pub struct ImportJobAttributes {
    pub created_at: Option<String>,
    pub updated_at: Option<String>,
    pub tag_id: Option<i32>,
    pub tag_tag: Option<String>,
    pub key: Option<String>,
    pub file_type: Option<String>,
    pub provider: Option<String>,
    pub status: Option<String>,
    pub stage: Option<String>,
    pub configuration: Option<String>,
    pub extended_status: Option<String>,
    pub transactions: Option<String>,
    pub errors: Option<String>,
}

Fields

created_at: Option<String>updated_at: Option<String>tag_id: Option<i32>

ID of the tag related to the import job, if present.

tag_tag: Option<String>

Tag related to the import job, if present.

key: Option<String>

Import job unique identifier.

file_type: Option<String>

File type, if relevant.

provider: Option<String>

Import provider that did the import.

status: Option<String>

Status of import job.

stage: Option<String>

Current stage.

configuration: Option<String>

JSON string with job-specific configuration.

extended_status: Option<String>

JSON string with job-specific status.

transactions: Option<String>

JSON string with a count of transactions in the job.

errors: Option<String>

JSON string with a list of errors.

Methods

impl ImportJobAttributes[src]

Trait Implementations

impl Debug for ImportJobAttributes[src]

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

impl PartialEq<ImportJobAttributes> for ImportJobAttributes[src]

impl Serialize for ImportJobAttributes[src]

impl StructuralPartialEq for ImportJobAttributes[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: Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.