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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._request_options import RequestOptions
from typing import Dict, List
from typing_extensions import Literal, NotRequired, TypedDict
class SourceCreateParams(RequestOptions):
amount: NotRequired[int]
"""
Amount associated with the source. This is the amount for which the source will be chargeable once ready. Required for `single_use` sources. Not supported for `receiver` type sources, where charge amount may not be specified until funds land.
"""
currency: NotRequired[str]
"""
Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) associated with the source. This is the currency for which the source will be chargeable once ready.
"""
customer: NotRequired[str]
"""
The `Customer` to whom the original source is attached to. Must be set when the original source is not a `Source` (e.g., `Card`).
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
flow: NotRequired[
Literal["code_verification", "none", "receiver", "redirect"]
]
"""
The authentication `flow` of the source to create. `flow` is one of `redirect`, `receiver`, `code_verification`, `none`. It is generally inferred unless a type supports multiple flows.
"""
mandate: NotRequired["SourceCreateParamsMandate"]
"""
Information about a mandate possibility attached to a source object (generally for bank debits) as well as its acceptance status.
"""
metadata: NotRequired[Dict[str, str]]
original_source: NotRequired[str]
"""
The source to share.
"""
owner: NotRequired["SourceCreateParamsOwner"]
"""
Information about the owner of the payment instrument that may be used or required by particular source types.
"""
receiver: NotRequired["SourceCreateParamsReceiver"]
"""
Optional parameters for the receiver flow. Can be set only if the source is a receiver (`flow` is `receiver`).
"""
redirect: NotRequired["SourceCreateParamsRedirect"]
"""
Parameters required for the redirect flow. Required if the source is authenticated by a redirect (`flow` is `redirect`).
"""
source_order: NotRequired["SourceCreateParamsSourceOrder"]
"""
Information about the items and shipping associated with the source. Required for transactional credit (for example Klarna) sources before you can charge it.
"""
statement_descriptor: NotRequired[str]
"""
An arbitrary string to be displayed on your customer's statement. As an example, if your website is `RunClub` and the item you're charging for is a race ticket, you may want to specify a `statement_descriptor` of `RunClub 5K race ticket.` While many payment types will display this information, some may not display it at all.
"""
token: NotRequired[str]
"""
An optional token used to create the source. When passed, token properties will override source parameters.
"""
type: NotRequired[str]
"""
The `type` of the source to create. Required unless `customer` and `original_source` are specified (see the [Cloning card Sources](https://stripe.com/docs/sources/connect#cloning-card-sources) guide)
"""
usage: NotRequired[Literal["reusable", "single_use"]]
class SourceCreateParamsMandate(TypedDict):
acceptance: NotRequired["SourceCreateParamsMandateAcceptance"]
"""
The parameters required to notify Stripe of a mandate acceptance or refusal by the customer.
"""
amount: NotRequired["Literal['']|int"]
"""
The amount specified by the mandate. (Leave null for a mandate covering all amounts)
"""
currency: NotRequired[str]
"""
The currency specified by the mandate. (Must match `currency` of the source)
"""
interval: NotRequired[Literal["one_time", "scheduled", "variable"]]
"""
The interval of debits permitted by the mandate. Either `one_time` (just permitting a single debit), `scheduled` (with debits on an agreed schedule or for clearly-defined events), or `variable`(for debits with any frequency)
"""
notification_method: NotRequired[
Literal["deprecated_none", "email", "manual", "none", "stripe_email"]
]
"""
The method Stripe should use to notify the customer of upcoming debit instructions and/or mandate confirmation as required by the underlying debit network. Either `email` (an email is sent directly to the customer), `manual` (a `source.mandate_notification` event is sent to your webhooks endpoint and you should handle the notification) or `none` (the underlying debit network does not require any notification).
"""
class SourceCreateParamsMandateAcceptance(TypedDict):
date: NotRequired[int]
"""
The Unix timestamp (in seconds) when the mandate was accepted or refused by the customer.
"""
ip: NotRequired[str]
"""
The IP address from which the mandate was accepted or refused by the customer.
"""
offline: NotRequired["SourceCreateParamsMandateAcceptanceOffline"]
"""
The parameters required to store a mandate accepted offline. Should only be set if `mandate[type]` is `offline`
"""
online: NotRequired["SourceCreateParamsMandateAcceptanceOnline"]
"""
The parameters required to store a mandate accepted online. Should only be set if `mandate[type]` is `online`
"""
status: Literal["accepted", "pending", "refused", "revoked"]
"""
The status of the mandate acceptance. Either `accepted` (the mandate was accepted) or `refused` (the mandate was refused).
"""
type: NotRequired[Literal["offline", "online"]]
"""
The type of acceptance information included with the mandate. Either `online` or `offline`
"""
user_agent: NotRequired[str]
"""
The user agent of the browser from which the mandate was accepted or refused by the customer.
"""
class SourceCreateParamsMandateAcceptanceOffline(TypedDict):
contact_email: str
"""
An email to contact you with if a copy of the mandate is requested, required if `type` is `offline`.
"""
class SourceCreateParamsMandateAcceptanceOnline(TypedDict):
date: NotRequired[int]
"""
The Unix timestamp (in seconds) when the mandate was accepted or refused by the customer.
"""
ip: NotRequired[str]
"""
The IP address from which the mandate was accepted or refused by the customer.
"""
user_agent: NotRequired[str]
"""
The user agent of the browser from which the mandate was accepted or refused by the customer.
"""
class SourceCreateParamsOwner(TypedDict):
address: NotRequired["SourceCreateParamsOwnerAddress"]
"""
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 SourceCreateParamsOwnerAddress(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.
"""
class SourceCreateParamsReceiver(TypedDict):
refund_attributes_method: NotRequired[Literal["email", "manual", "none"]]
"""
The method Stripe should use to request information needed to process a refund or mispayment. Either `email` (an email is sent directly to the customer) or `manual` (a `source.refund_attributes_required` event is sent to your webhooks endpoint). Refer to each payment method's documentation to learn which refund attributes may be required.
"""
class SourceCreateParamsRedirect(TypedDict):
return_url: str
"""
The URL you provide to redirect the customer back to you after they authenticated their payment. It can use your application URI scheme in the context of a mobile application.
"""
class SourceCreateParamsSourceOrder(TypedDict):
items: NotRequired[List["SourceCreateParamsSourceOrderItem"]]
"""
List of items constituting the order.
"""
shipping: NotRequired["SourceCreateParamsSourceOrderShipping"]
"""
Shipping address for the order. Required if any of the SKUs are for products that have `shippable` set to true.
"""
class SourceCreateParamsSourceOrderItem(TypedDict):
amount: NotRequired[int]
currency: NotRequired[str]
description: NotRequired[str]
parent: NotRequired[str]
"""
The ID of the SKU being ordered.
"""
quantity: NotRequired[int]
"""
The quantity of this order item. When type is `sku`, this is the number of instances of the SKU to be ordered.
"""
type: NotRequired[Literal["discount", "shipping", "sku", "tax"]]
class SourceCreateParamsSourceOrderShipping(TypedDict):
address: "SourceCreateParamsSourceOrderShippingAddress"
"""
Shipping address.
"""
carrier: NotRequired[str]
"""
The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
"""
name: NotRequired[str]
"""
Recipient name.
"""
phone: NotRequired[str]
"""
Recipient phone (including extension).
"""
tracking_number: NotRequired[str]
"""
The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
"""
class SourceCreateParamsSourceOrderShippingAddress(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: 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.
"""
|