pub struct CreditRelayRefreshResponse {
pub asset_report_id: Option<String>,
pub relay_token: String,
pub request_id: String,
}Expand description
CreditRelayRefreshResponse defines the response schema for /credit/relay/refresh
Fields§
§asset_report_id: Option<String>A unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive.
relay_token: String§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 CreditRelayRefreshResponse
impl Clone for CreditRelayRefreshResponse
Source§fn clone(&self) -> CreditRelayRefreshResponse
fn clone(&self) -> CreditRelayRefreshResponse
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 CreditRelayRefreshResponse
impl Debug for CreditRelayRefreshResponse
Source§impl Default for CreditRelayRefreshResponse
impl Default for CreditRelayRefreshResponse
Source§fn default() -> CreditRelayRefreshResponse
fn default() -> CreditRelayRefreshResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreditRelayRefreshResponse
impl<'de> Deserialize<'de> for CreditRelayRefreshResponse
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 CreditRelayRefreshResponse
impl Display for CreditRelayRefreshResponse
Auto Trait Implementations§
impl Freeze for CreditRelayRefreshResponse
impl RefUnwindSafe for CreditRelayRefreshResponse
impl Send for CreditRelayRefreshResponse
impl Sync for CreditRelayRefreshResponse
impl Unpin for CreditRelayRefreshResponse
impl UnwindSafe for CreditRelayRefreshResponse
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