Skip to main content

SubmitApplicationRequest

Struct SubmitApplicationRequest 

Source
pub struct SubmitApplicationRequest {
Show 51 fields pub timeout: i32, pub test: bool, pub invite_code: String, pub dba_name: String, pub corporate_name: String, pub web_site: String, pub tax_id_number: String, pub entity_type: String, pub state_of_incorporation: String, pub merchant_type: String, pub business_description: String, pub years_in_business: String, pub business_phone_number: String, pub physical_address: Address, pub mailing_address: Address, pub contact_first_name: String, pub contact_last_name: String, pub contact_phone_number: String, pub contact_email: String, pub contact_title: String, pub contact_tax_id_number: String, pub contact_dob: String, pub contact_dl_number: String, pub contact_dl_state_or_province: String, pub contact_dl_expiration: String, pub contact_home_address: Address, pub contact_role: String, pub owners: Option<Vec<Owner>>, pub manual_account: ApplicationAccount, pub average_transaction: String, pub high_transaction: String, pub average_month: String, pub high_month: String, pub refund_policy: String, pub refund_days: String, pub time_zone: String, pub batch_close_time: String, pub multiple_locations: String, pub location_name: String, pub store_number: String, pub ebt_requested: String, pub fns_number: String, pub ecommerce: String, pub drop_shipping: bool, pub card_present_percentage: String, pub phone_order_percentage: String, pub ecom_percentage: String, pub bill_before_shipment_days: String, pub subscriptions_supported: String, pub subscription_frequency: String, pub signer_name: String,
}
Expand description

Models a merchant application submission request to add a new merchant account.

Fields§

§timeout: i32

The request timeout in seconds.

§test: bool

Whether or not to route transaction to the test gateway.

§invite_code: String

The invite code for the merchant.

§dba_name: String

The business name your customers know you by (DBA Name).

§corporate_name: String

The name of the legal entity you file your taxes under.

§web_site: String

The business website.

§tax_id_number: String

The business tax identification number (EIN).

§entity_type: String

The type of business entity.

§state_of_incorporation: String

The state where the business is incorporated.

§merchant_type: String

The primary type of business (e.g., Retail, Service, etc.).

§business_description: String

A short description of the products and services sold.

§years_in_business: String

The number of years the business has been operating.

§business_phone_number: String

The business telephone number.

§physical_address: Address

The physical address of the business.

§mailing_address: Address

The mailing address of the business.

§contact_first_name: String

The first name of the primary contact.

§contact_last_name: String

The last name of the primary contact.

§contact_phone_number: String

The phone number of the primary contact.

§contact_email: String

The email address of the primary contact.

§contact_title: String

The job title of the primary contact.

§contact_tax_id_number: String

The tax identification number (SSN) of the primary contact.

§contact_dob: String

The date of birth of the primary contact.

§contact_dl_number: String

The driver’s license number of the primary contact.

§contact_dl_state_or_province: String

The state that issued the primary contact’s driver’s license.

§contact_dl_expiration: String

The expiration date of the primary contact’s driver’s license.

§contact_home_address: Address

The home address of the primary contact.

§contact_role: String

The role of the primary contact in the business.

§owners: Option<Vec<Owner>>

List of individuals with 25% or more ownership in the company.

§manual_account: ApplicationAccount

The bank account information for the business.

§average_transaction: String

The average transaction amount.

§high_transaction: String

The highest expected transaction amount.

§average_month: String

The average monthly transaction volume.

§high_month: String

The highest expected monthly transaction volume.

§refund_policy: String

The refund policy of the business.

§refund_days: String

The number of days after purchase that refunds can be issued.

§time_zone: String

The time zone of the business.

§batch_close_time: String

The time when the daily batch should close.

§multiple_locations: String

Indicates if the business has multiple locations.

§location_name: String

The name of this specific business location.

§store_number: String

The store number for this location.

§ebt_requested: String

Indicates if the business wants to accept EBT cards.

§fns_number: String

The FNS number issued by the USDA for EBT processing.

§ecommerce: String

Indicates if the business plans to accept payments through a website.

§drop_shipping: bool

Indicates if suppliers ship products directly to customers.

§card_present_percentage: String

The percentage of transactions that will be chip or swipe.

§phone_order_percentage: String

The percentage of transactions that will be phone orders.

§ecom_percentage: String

The percentage of transactions that will be e-commerce.

§bill_before_shipment_days: String

The number of days before shipment that customers are charged.

§subscriptions_supported: String

Indicates if the business plans to process recurring payments.

§subscription_frequency: String

The frequency of recurring payments (if applicable).

§signer_name: String

The full legal name of the person signing the application.

Trait Implementations§

Source§

impl Clone for SubmitApplicationRequest

Source§

fn clone(&self) -> SubmitApplicationRequest

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 SubmitApplicationRequest

Source§

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

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

impl Default for SubmitApplicationRequest

Source§

fn default() -> SubmitApplicationRequest

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

impl<'de> Deserialize<'de> for SubmitApplicationRequest

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 Serialize for SubmitApplicationRequest

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> Same for T

Source§

type Output = T

Should always be Self
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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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>,