Struct stripe::IssuingCardholder[][src]

pub struct IssuingCardholder {
    pub id: IssuingCardholderId,
    pub billing: IssuingCardholderAddress,
    pub company: Option<IssuingCardholderCompany>,
    pub created: Timestamp,
    pub email: Option<String>,
    pub individual: Option<IssuingCardholderIndividual>,
    pub livemode: bool,
    pub metadata: Metadata,
    pub name: String,
    pub phone_number: Option<String>,
    pub requirements: IssuingCardholderRequirements,
    pub spending_controls: Option<IssuingCardholderAuthorizationControls>,
    pub status: IssuingCardholderStatus,
    pub type_: IssuingCardholderType,
}

The resource representing a Stripe "IssuingCardholder".

Fields

id: IssuingCardholderId

Unique identifier for the object.

billing: IssuingCardholderAddresscompany: Option<IssuingCardholderCompany>

Additional information about a company cardholder.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

email: Option<String>

The cardholder's email address.

individual: Option<IssuingCardholderIndividual>

Additional information about an individual cardholder.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

name: String

The cardholder's name.

This will be printed on cards issued to them.

phone_number: Option<String>

The cardholder's phone number.

requirements: IssuingCardholderRequirementsspending_controls: Option<IssuingCardholderAuthorizationControls>

Rules that control spending across this cardholder's cards.

Refer to our documentation for more details.

status: IssuingCardholderStatus

Specifies whether to permit authorizations on this cardholder's cards.

type_: IssuingCardholderType

One of individual or company.

Trait Implementations

impl Clone for IssuingCardholder[src]

impl Debug for IssuingCardholder[src]

impl<'de> Deserialize<'de> for IssuingCardholder[src]

impl Object for IssuingCardholder[src]

type Id = IssuingCardholderId

The canonical id type for this object.

impl Serialize for IssuingCardholder[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]