[][src]Struct stripe::IssuingCardholder

pub struct IssuingCardholder {
    pub id: IssuingCardholderId,
    pub authorization_controls: Option<IssuingCardholderAuthorizationControls>,
    pub billing: IssuingCardholderAddress,
    pub created: Timestamp,
    pub email: Option<String>,
    pub is_default: bool,
    pub livemode: bool,
    pub metadata: Metadata,
    pub name: String,
    pub phone_number: Option<String>,
    pub status: IssuingCardholderStatus,
    pub type_: IssuingCardholderType,
}

The resource representing a Stripe "IssuingCardholder".

Fields

id: IssuingCardholderId

Unique identifier for the object.

authorization_controls: Option<IssuingCardholderAuthorizationControls>billing: IssuingCardholderAddresscreated: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

email: Option<String>

The cardholder's email address.

is_default: bool

Whether or not this cardholder is the default 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.

status: IssuingCardholderStatus

One of active, inactive, blocked, or pending.

type_: IssuingCardholderType

One of individual or business_entity.

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