pub struct DocumentRecord {Show 24 fields
pub Id: i32,
pub No: i32,
pub SplitNo: i32,
pub Account: String,
pub Account_Full: Account,
pub SplitType: enumSplitType,
pub SplitOpposingAccountType: enumSplitOpposingAccountType,
pub ParallelType: enumParallelType,
pub Side: enumSideType,
pub RecordVat: bool,
pub Description: String,
pub DescriptionKind: enumRecordDecsriptionKind,
pub Currency: String,
pub CurrencyRate: Decimal,
pub CurrencyRateTableId: i32,
pub CurrencyRateType: enumCurrencyRateType,
pub DocumentNumber: String,
pub Value: Decimal,
pub ValuePLN: Decimal,
pub ReportAccount: bool,
pub KPKWDate: NaiveDateTime,
pub Settlements: Vec<DocumentSettlement>,
pub Transactions: Vec<DocumentTransaction>,
pub Features: Vec<i32>,
}Expand description
WebAPI model DocumentRecord.
Fields§
§Id: i32§No: i32§SplitNo: i32§Account: String§Account_Full: Account§SplitType: enumSplitType§SplitOpposingAccountType: enumSplitOpposingAccountType§ParallelType: enumParallelType§Side: enumSideType§RecordVat: bool§Description: String§DescriptionKind: enumRecordDecsriptionKind§Currency: String§CurrencyRate: Decimal§CurrencyRateTableId: i32§CurrencyRateType: enumCurrencyRateType§DocumentNumber: String§Value: Decimal§ValuePLN: Decimal§ReportAccount: bool§KPKWDate: NaiveDateTime§Settlements: Vec<DocumentSettlement>§Transactions: Vec<DocumentTransaction>§Features: Vec<i32>Trait Implementations§
Source§impl Clone for DocumentRecord
impl Clone for DocumentRecord
Source§fn clone(&self) -> DocumentRecord
fn clone(&self) -> DocumentRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DocumentRecord
impl Debug for DocumentRecord
Source§impl<'de> Deserialize<'de> for DocumentRecord
impl<'de> Deserialize<'de> for DocumentRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DocumentRecord
impl RefUnwindSafe for DocumentRecord
impl Send for DocumentRecord
impl Sync for DocumentRecord
impl Unpin for DocumentRecord
impl UnsafeUnpin for DocumentRecord
impl UnwindSafe for DocumentRecord
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
Mutably borrows from an owned value. Read more