pub struct AssetsRefreshRequestSchema {
pub application_id: String,
pub account_ids: Vec<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.
account_ids: Vec<String>
These are the accounts that a refresh will be initiated for. When an applicationId is provided, the accounts refreshed must be part of the specified application.
Trait Implementations§
Source§impl Debug for AssetsRefreshRequestSchema
impl Debug for AssetsRefreshRequestSchema
Source§impl<'de> Deserialize<'de> for AssetsRefreshRequestSchema
impl<'de> Deserialize<'de> for AssetsRefreshRequestSchema
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 AssetsRefreshRequestSchema
impl Display for AssetsRefreshRequestSchema
Auto Trait Implementations§
impl Freeze for AssetsRefreshRequestSchema
impl RefUnwindSafe for AssetsRefreshRequestSchema
impl Send for AssetsRefreshRequestSchema
impl Sync for AssetsRefreshRequestSchema
impl Unpin for AssetsRefreshRequestSchema
impl UnwindSafe for AssetsRefreshRequestSchema
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