pub struct DocumentSettlementIssue {
pub TransactionId: Option<i32>,
pub SettledDocument: String,
pub Value: Option<Decimal>,
pub ValuePLN: Option<Decimal>,
pub Currency: String,
pub CurrencyRate: Option<Decimal>,
pub CurrencyForeign: String,
pub CurrencyRateForeign: Option<Decimal>,
pub ValueForeign: Option<Decimal>,
}Expand description
WebAPI model DocumentSettlementIssue.
Fields§
§TransactionId: Option<i32>§SettledDocument: String§Value: Option<Decimal>§ValuePLN: Option<Decimal>§Currency: String§CurrencyRate: Option<Decimal>§CurrencyForeign: String§CurrencyRateForeign: Option<Decimal>§ValueForeign: Option<Decimal>Trait Implementations§
Source§impl Clone for DocumentSettlementIssue
impl Clone for DocumentSettlementIssue
Source§fn clone(&self) -> DocumentSettlementIssue
fn clone(&self) -> DocumentSettlementIssue
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 DocumentSettlementIssue
impl Debug for DocumentSettlementIssue
Source§impl<'de> Deserialize<'de> for DocumentSettlementIssue
impl<'de> Deserialize<'de> for DocumentSettlementIssue
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 DocumentSettlementIssue
impl RefUnwindSafe for DocumentSettlementIssue
impl Send for DocumentSettlementIssue
impl Sync for DocumentSettlementIssue
impl Unpin for DocumentSettlementIssue
impl UnsafeUnpin for DocumentSettlementIssue
impl UnwindSafe for DocumentSettlementIssue
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