pub struct ConnectAccountLinkRequest {
pub account_ref: Option<String>,
pub refresh_url: String,
pub return_url: String,
pub idempotency_key: String,
}Expand description
Onboards a Connect account (a coach) and returns a hosted onboarding link.
Fields§
§account_ref: Option<String>An existing Connect account id to refresh, or None to create one.
refresh_url: String§return_url: String§idempotency_key: StringTrait Implementations§
Source§impl Clone for ConnectAccountLinkRequest
impl Clone for ConnectAccountLinkRequest
Source§fn clone(&self) -> ConnectAccountLinkRequest
fn clone(&self) -> ConnectAccountLinkRequest
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 ConnectAccountLinkRequest
impl RefUnwindSafe for ConnectAccountLinkRequest
impl Send for ConnectAccountLinkRequest
impl Sync for ConnectAccountLinkRequest
impl Unpin for ConnectAccountLinkRequest
impl UnsafeUnpin for ConnectAccountLinkRequest
impl UnwindSafe for ConnectAccountLinkRequest
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