pub struct TransactionDocument {
pub Code: String,
pub ValuePln: Decimal,
pub Value: Decimal,
pub ContractorId: i32,
pub ContractorCode: String,
pub ContractorName: String,
pub ContractorNip: String,
pub SettledValuePln: Decimal,
pub SettledValue: Decimal,
pub LeftToSettledValuePln: Decimal,
pub LeftToSettledValue: Decimal,
pub Transactions: Vec<Transaction>,
}Expand description
WebAPI model TransactionDocument.
Fields§
§Code: String§ValuePln: Decimal§Value: Decimal§ContractorId: i32§ContractorCode: String§ContractorName: String§ContractorNip: String§SettledValuePln: Decimal§SettledValue: Decimal§LeftToSettledValuePln: Decimal§LeftToSettledValue: Decimal§Transactions: Vec<Transaction>Trait Implementations§
Source§impl Clone for TransactionDocument
impl Clone for TransactionDocument
Source§fn clone(&self) -> TransactionDocument
fn clone(&self) -> TransactionDocument
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 TransactionDocument
impl Debug for TransactionDocument
Source§impl<'de> Deserialize<'de> for TransactionDocument
impl<'de> Deserialize<'de> for TransactionDocument
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 TransactionDocument
impl RefUnwindSafe for TransactionDocument
impl Send for TransactionDocument
impl Sync for TransactionDocument
impl Unpin for TransactionDocument
impl UnsafeUnpin for TransactionDocument
impl UnwindSafe for TransactionDocument
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