[][src]Struct heroku_rs::endpoints::teams::post::TeamCreateOptionalParams

pub struct TeamCreateOptionalParams<'a> {
    pub address_1: Option<&'a str>,
    pub address_2: Option<&'a str>,
    pub card_number: Option<&'a str>,
    pub city: Option<&'a str>,
    pub country: Option<&'a str>,
    pub cvv: Option<&'a str>,
    pub expiration_month: Option<&'a str>,
    pub expiration_year: Option<&'a str>,
    pub first_name: Option<&'a str>,
    pub last_name: Option<&'a str>,
    pub other: Option<&'a str>,
    pub postal_code: Option<&'a str>,
    pub state: Option<&'a str>,
    pub nonce: Option<&'a str>,
    pub device_data: Option<&'a str>,
}

Fields

address_1: Option<&'a str>

street address line 1

address_2: Option<&'a str>

street address line 2

card_number: Option<&'a str>

encrypted card number of payment method

city: Option<&'a str>

city

country: Option<&'a str>

country

cvv: Option<&'a str>

card verification value

expiration_month: Option<&'a str>

expiration month

expiration_year: Option<&'a str>

expiration year

first_name: Option<&'a str>

the first name for payment method

last_name: Option<&'a str>

the last name for payment method

other: Option<&'a str>

metadata

postal_code: Option<&'a str>

postal code

state: Option<&'a str>

state

nonce: Option<&'a str>

Nonce generated by Braintree hosted fields form

device_data: Option<&'a str>

Device data string generated by the client

Trait Implementations

impl<'a> Clone for TeamCreateOptionalParams<'a>[src]

impl<'a> Debug for TeamCreateOptionalParams<'a>[src]

impl<'a> Serialize for TeamCreateOptionalParams<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.