pub struct AssetReportFilterResponse {
pub asset_report_id: String,
pub asset_report_token: String,
pub request_id: String,
}Expand description
AssetReportFilterResponse defines the response schema for /asset_report/filter
Fields§
§asset_report_id: StringA unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive.
asset_report_token: StringA token that can be provided to endpoints such as /asset_report/get or /asset_report/pdf/get to fetch or update an Asset Report.
request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations§
Source§impl Clone for AssetReportFilterResponse
impl Clone for AssetReportFilterResponse
Source§fn clone(&self) -> AssetReportFilterResponse
fn clone(&self) -> AssetReportFilterResponse
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 AssetReportFilterResponse
impl Debug for AssetReportFilterResponse
Source§impl Default for AssetReportFilterResponse
impl Default for AssetReportFilterResponse
Source§fn default() -> AssetReportFilterResponse
fn default() -> AssetReportFilterResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetReportFilterResponse
impl<'de> Deserialize<'de> for AssetReportFilterResponse
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 AssetReportFilterResponse
impl Display for AssetReportFilterResponse
Auto Trait Implementations§
impl Freeze for AssetReportFilterResponse
impl RefUnwindSafe for AssetReportFilterResponse
impl Send for AssetReportFilterResponse
impl Sync for AssetReportFilterResponse
impl Unpin for AssetReportFilterResponse
impl UnwindSafe for AssetReportFilterResponse
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