1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from typing import Dict, List
from typing_extensions import Literal, NotRequired, TypedDict
class CustomerPaymentSourceUpdateParams(TypedDict):
account_holder_name: NotRequired[str]
"""
The name of the person or business that owns the bank account.
"""
account_holder_type: NotRequired[Literal["company", "individual"]]
"""
The type of entity that holds the account. This can be either `individual` or `company`.
"""
address_city: NotRequired[str]
"""
City/District/Suburb/Town/Village.
"""
address_country: NotRequired[str]
"""
Billing address country, if provided when creating card.
"""
address_line1: NotRequired[str]
"""
Address line 1 (Street address/PO Box/Company name).
"""
address_line2: NotRequired[str]
"""
Address line 2 (Apartment/Suite/Unit/Building).
"""
address_state: NotRequired[str]
"""
State/County/Province/Region.
"""
address_zip: NotRequired[str]
"""
ZIP or postal code.
"""
exp_month: NotRequired[str]
"""
Two digit number representing the card's expiration month.
"""
exp_year: NotRequired[str]
"""
Four digit number representing the card's expiration year.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
metadata: NotRequired["Literal['']|Dict[str, str]"]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
"""
name: NotRequired[str]
"""
Cardholder name.
"""
owner: NotRequired["CustomerPaymentSourceUpdateParamsOwner"]
class CustomerPaymentSourceUpdateParamsOwner(TypedDict):
address: NotRequired["CustomerPaymentSourceUpdateParamsOwnerAddress"]
"""
Owner's address.
"""
email: NotRequired[str]
"""
Owner's email address.
"""
name: NotRequired[str]
"""
Owner's full name.
"""
phone: NotRequired[str]
"""
Owner's phone number.
"""
class CustomerPaymentSourceUpdateParamsOwnerAddress(TypedDict):
city: NotRequired[str]
"""
City, district, suburb, town, or village.
"""
country: NotRequired[str]
"""
Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
"""
line1: NotRequired[str]
"""
Address line 1, such as the street, PO Box, or company name.
"""
line2: NotRequired[str]
"""
Address line 2, such as the apartment, suite, unit, or building.
"""
postal_code: NotRequired[str]
"""
ZIP or postal code.
"""
state: NotRequired[str]
"""
State, county, province, or region.
"""
|