pub struct OwnOrderIssue {Show 20 fields
pub TypeCode: String,
pub Series: String,
pub NumberInSeries: Option<i32>,
pub Department: String,
pub PaymentRegistry: PaymentRegistryBase,
pub PaymentFormId: i32,
pub IssueDate: Option<NaiveDateTime>,
pub ReceiveDate: Option<NaiveDateTime>,
pub MaturityDate: Option<NaiveDateTime>,
pub Currency: String,
pub CurrencyRate: Decimal,
pub PriceKind: enumPriceKind,
pub Seller: OwnOrderIssueContractor,
pub Deliverer: OwnOrderIssueContractor,
pub Positions: Vec<OwnOrderIssuePosition>,
pub Catalog: OwnOrderIssueCatalog,
pub Kind: OwnOrderIssueKind,
pub Marker: i32,
pub Description: String,
pub Note: Option<String>,
}Expand description
WebAPI model OwnOrderIssue.
Fields§
§TypeCode: String§Series: String§NumberInSeries: Option<i32>§Department: String§PaymentRegistry: PaymentRegistryBase§PaymentFormId: i32§IssueDate: Option<NaiveDateTime>§ReceiveDate: Option<NaiveDateTime>§MaturityDate: Option<NaiveDateTime>§Currency: String§CurrencyRate: Decimal§PriceKind: enumPriceKind§Seller: OwnOrderIssueContractor§Deliverer: OwnOrderIssueContractor§Positions: Vec<OwnOrderIssuePosition>§Catalog: OwnOrderIssueCatalog§Kind: OwnOrderIssueKind§Marker: i32§Description: String§Note: Option<String>Trait Implementations§
Source§impl Clone for OwnOrderIssue
impl Clone for OwnOrderIssue
Source§fn clone(&self) -> OwnOrderIssue
fn clone(&self) -> OwnOrderIssue
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 OwnOrderIssue
impl Debug for OwnOrderIssue
Source§impl<'de> Deserialize<'de> for OwnOrderIssue
impl<'de> Deserialize<'de> for OwnOrderIssue
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 OwnOrderIssue
impl RefUnwindSafe for OwnOrderIssue
impl Send for OwnOrderIssue
impl Sync for OwnOrderIssue
impl Unpin for OwnOrderIssue
impl UnsafeUnpin for OwnOrderIssue
impl UnwindSafe for OwnOrderIssue
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