pub struct ExportStatusSchema {
pub application_id: String,
pub status: String,
pub reason: Option<String>,
pub last_updated: Option<String>,
}
Fields§
§application_id: String
The UUID of the application in Blend’s system. The static identifier that should be used to connect the application’s identity across Blend and external integrations.
status: String
ENUM describing the status of this application’s export to an external system
reason: Option<String>
Further explanation for the assigned status
last_updated: Option<String>
UTC Timestamp of last update to status
Trait Implementations§
Source§impl Debug for ExportStatusSchema
impl Debug for ExportStatusSchema
Source§impl<'de> Deserialize<'de> for ExportStatusSchema
impl<'de> Deserialize<'de> for ExportStatusSchema
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 ExportStatusSchema
impl Display for ExportStatusSchema
Auto Trait Implementations§
impl Freeze for ExportStatusSchema
impl RefUnwindSafe for ExportStatusSchema
impl Send for ExportStatusSchema
impl Sync for ExportStatusSchema
impl Unpin for ExportStatusSchema
impl UnwindSafe for ExportStatusSchema
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