pub struct UserThirdPartyTokenRemoveResponse {
pub removed: bool,
pub request_id: String,
}Expand description
UserThirdPartyTokenCreateResponse defines the response schema for /user/third_party_token/remove
Fields§
§removed: booltrue if the third-party user token was successfully removed.
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 UserThirdPartyTokenRemoveResponse
impl Clone for UserThirdPartyTokenRemoveResponse
Source§fn clone(&self) -> UserThirdPartyTokenRemoveResponse
fn clone(&self) -> UserThirdPartyTokenRemoveResponse
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 Default for UserThirdPartyTokenRemoveResponse
impl Default for UserThirdPartyTokenRemoveResponse
Source§fn default() -> UserThirdPartyTokenRemoveResponse
fn default() -> UserThirdPartyTokenRemoveResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserThirdPartyTokenRemoveResponse
impl<'de> Deserialize<'de> for UserThirdPartyTokenRemoveResponse
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
Auto Trait Implementations§
impl Freeze for UserThirdPartyTokenRemoveResponse
impl RefUnwindSafe for UserThirdPartyTokenRemoveResponse
impl Send for UserThirdPartyTokenRemoveResponse
impl Sync for UserThirdPartyTokenRemoveResponse
impl Unpin for UserThirdPartyTokenRemoveResponse
impl UnwindSafe for UserThirdPartyTokenRemoveResponse
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