pub struct UpdateUserConnectedAccountParams {
pub organization_id: Option<String>,
pub body: ConnectedAccountInput,
}Fields§
§organization_id: Option<String>An Organization identifier. Optional parameter if the connection is scoped to an organization.
body: ConnectedAccountInputRequest body sent with this call.
Required.
Implementations§
Source§impl UpdateUserConnectedAccountParams
impl UpdateUserConnectedAccountParams
Sourcepub fn new(body: ConnectedAccountInput) -> Self
pub fn new(body: ConnectedAccountInput) -> Self
Construct a new UpdateUserConnectedAccountParams with the required fields set.
Trait Implementations§
Source§impl Clone for UpdateUserConnectedAccountParams
impl Clone for UpdateUserConnectedAccountParams
Source§fn clone(&self) -> UpdateUserConnectedAccountParams
fn clone(&self) -> UpdateUserConnectedAccountParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateUserConnectedAccountParams
impl RefUnwindSafe for UpdateUserConnectedAccountParams
impl Send for UpdateUserConnectedAccountParams
impl Sync for UpdateUserConnectedAccountParams
impl Unpin for UpdateUserConnectedAccountParams
impl UnsafeUnpin for UpdateUserConnectedAccountParams
impl UnwindSafe for UpdateUserConnectedAccountParams
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