pub struct DocumentExportStatusSchema {
pub exported_at: Option<String>,
pub exported_by: Option<String>,
pub partner_id: Option<String>,
pub exported_to: Option<String>,
}
Fields§
§exported_at: Option<String>
UTC timestamp of export time
exported_by: Option<String>
ID of the user who initiated the export call
partner_id: Option<String>
Role of the user who initiated the export call
exported_to: Option<String>
The UUID or GUID of the current resource in the LOS AFTER initial export to the LOS. For loans this may match the loan reference number depending on the LOS and if the customer has selected to use only GUIDs instead of UUIDs in their LOS settings. For all other resources, it is the static identifier of this resource in the LOS.
Trait Implementations§
Source§impl Debug for DocumentExportStatusSchema
impl Debug for DocumentExportStatusSchema
Source§impl<'de> Deserialize<'de> for DocumentExportStatusSchema
impl<'de> Deserialize<'de> for DocumentExportStatusSchema
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
Source§impl Display for DocumentExportStatusSchema
impl Display for DocumentExportStatusSchema
Auto Trait Implementations§
impl Freeze for DocumentExportStatusSchema
impl RefUnwindSafe for DocumentExportStatusSchema
impl Send for DocumentExportStatusSchema
impl Sync for DocumentExportStatusSchema
impl Unpin for DocumentExportStatusSchema
impl UnwindSafe for DocumentExportStatusSchema
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