pub struct CreateUserConnectedAccountParams {
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 CreateUserConnectedAccountParams
impl CreateUserConnectedAccountParams
Sourcepub fn new(body: ConnectedAccountInput) -> Self
pub fn new(body: ConnectedAccountInput) -> Self
Construct a new CreateUserConnectedAccountParams with the required fields set.
Trait Implementations§
Source§impl Clone for CreateUserConnectedAccountParams
impl Clone for CreateUserConnectedAccountParams
Source§fn clone(&self) -> CreateUserConnectedAccountParams
fn clone(&self) -> CreateUserConnectedAccountParams
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 CreateUserConnectedAccountParams
impl RefUnwindSafe for CreateUserConnectedAccountParams
impl Send for CreateUserConnectedAccountParams
impl Sync for CreateUserConnectedAccountParams
impl Unpin for CreateUserConnectedAccountParams
impl UnsafeUnpin for CreateUserConnectedAccountParams
impl UnwindSafe for CreateUserConnectedAccountParams
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