pub struct MemberCreateRequestBody {
pub client_redirect_url: Option<String>,
pub enable_app2app: Option<bool>,
pub member: Option<MemberCreateRequest>,
pub referral_source: Option<String>,
pub ui_message_webview_url_scheme: Option<String>,
}Expand description
MemberCreateRequestBody
JSON schema
{
"type": "object",
"properties": {
"client_redirect_url": {
"examples": [
"https://{yoursite.com}"
],
"type": "string"
},
"enable_app2app": {
"description": "This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. When set to `false`, any `oauth_window_uri` generated will **not** direct the end user to the institution's mobile application. This setting is not persistent. This setting currently only affects Chase institutions.\n",
"examples": [
false
],
"type": "boolean"
},
"member": {
"$ref": "#/components/schemas/MemberCreateRequest"
},
"referral_source": {
"examples": [
"APP"
],
"type": "string"
},
"ui_message_webview_url_scheme": {
"type": "string"
}
}
}Fields§
§client_redirect_url: Option<String>§enable_app2app: Option<bool>This indicates whether OAuth app2app behavior is enabled for
institutions that support it. Defaults to true. When set to
false, any oauth_window_uri generated will not direct the
end user to the institution’s mobile application. This setting is
not persistent. This setting currently only affects Chase
institutions.
member: Option<MemberCreateRequest>§referral_source: Option<String>§ui_message_webview_url_scheme: Option<String>Trait Implementations§
Source§impl Clone for MemberCreateRequestBody
impl Clone for MemberCreateRequestBody
Source§fn clone(&self) -> MemberCreateRequestBody
fn clone(&self) -> MemberCreateRequestBody
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 MemberCreateRequestBody
impl Debug for MemberCreateRequestBody
Source§impl Default for MemberCreateRequestBody
impl Default for MemberCreateRequestBody
Source§impl<'de> Deserialize<'de> for MemberCreateRequestBody
impl<'de> Deserialize<'de> for MemberCreateRequestBody
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 From<&MemberCreateRequestBody> for MemberCreateRequestBody
impl From<&MemberCreateRequestBody> for MemberCreateRequestBody
Source§fn from(value: &MemberCreateRequestBody) -> Self
fn from(value: &MemberCreateRequestBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MemberCreateRequestBody
impl RefUnwindSafe for MemberCreateRequestBody
impl Send for MemberCreateRequestBody
impl Sync for MemberCreateRequestBody
impl Unpin for MemberCreateRequestBody
impl UnwindSafe for MemberCreateRequestBody
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