ConnectWidgetRequest

Struct ConnectWidgetRequest 

Source
pub struct ConnectWidgetRequest {
Show 15 fields pub client_redirect_url: Option<String>, pub color_scheme: Option<String>, pub current_institution_code: Option<String>, pub current_member_guid: Option<String>, pub disable_background_agg: Option<bool>, pub disable_institution_search: Option<bool>, pub enable_app2app: Option<bool>, pub include_identity: Option<bool>, pub include_transactions: Option<bool>, pub is_mobile_webview: Option<bool>, pub mode: Option<String>, pub oauth_referral_source: Option<String>, pub ui_message_version: Option<i64>, pub ui_message_webview_url_scheme: Option<String>, pub update_credentials: Option<bool>,
}
Expand description

ConnectWidgetRequest

JSON schema
{
 "type": "object",
 "properties": {
   "client_redirect_url": {
     "examples": [
       "https://{yoursite.com}"
     ],
     "type": "string"
   },
   "color_scheme": {
     "examples": [
       "light"
     ],
     "type": "string"
   },
   "current_institution_code": {
     "examples": [
       "mxbank"
     ],
     "type": "string"
   },
   "current_member_guid": {
     "examples": [
       "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"
     ],
     "type": "string"
   },
   "disable_background_agg": {
     "examples": [
       false
     ],
     "type": "boolean"
   },
   "disable_institution_search": {
     "examples": [
       false
     ],
     "type": "boolean"
   },
   "enable_app2app": {
     "description": "This indicates whether OAuth app2app behavior is
enabled for institutions that support it. Defaults to `true`. When set
to `false`, the widget 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"
   },
   "include_identity": {
     "examples": [
       false
     ],
     "type": "boolean"
   },
   "include_transactions": {
     "examples": [
       true
     ],
     "type": "boolean"
   },
   "is_mobile_webview": {
     "examples": [
       false
     ],
     "type": "boolean"
   },
   "mode": {
     "examples": [
       "aggregation"
     ],
     "type": "string"
   },
   "oauth_referral_source": {
     "examples": [
       "BROWSER"
     ],
     "type": "string"
   },
   "ui_message_version": {
     "examples": [
       4
     ],
     "type": "integer"
   },
   "ui_message_webview_url_scheme": {
     "type": "string"
   },
   "update_credentials": {
     "examples": [
       false
     ],
     "type": "boolean"
   }
 }
}

Fields§

§client_redirect_url: Option<String>§color_scheme: Option<String>§current_institution_code: Option<String>§current_member_guid: Option<String>§disable_background_agg: Option<bool>§disable_institution_search: Option<bool>§enable_app2app: Option<bool>

This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to true. When set to false, the widget will not direct the end user to the institution’s mobile application. This setting is not persistent. This setting currently only affects Chase institutions.

§include_identity: Option<bool>§include_transactions: Option<bool>§is_mobile_webview: Option<bool>§mode: Option<String>§oauth_referral_source: Option<String>§ui_message_version: Option<i64>§ui_message_webview_url_scheme: Option<String>§update_credentials: Option<bool>

Trait Implementations§

Source§

impl Clone for ConnectWidgetRequest

Source§

fn clone(&self) -> ConnectWidgetRequest

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ConnectWidgetRequest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ConnectWidgetRequest

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ConnectWidgetRequest

Source§

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<&ConnectWidgetRequest> for ConnectWidgetRequest

Source§

fn from(value: &ConnectWidgetRequest) -> Self

Converts to this type from the input type.
Source§

impl Serialize for ConnectWidgetRequest

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,