UNPKG

stripe

Version:
153 lines (152 loc) 4.19 kB
export { Decimal } from './Decimal.js'; /** * 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. */ export interface Metadata { [name: string]: string; } /** * 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. * While you can send values as numbers, they will be returned as strings. */ export interface MetadataParam { [name: string]: string | number | null; } /** * The Address object. */ export interface Address { /** * City/District/Suburb/Town/Village. */ city: string | null; /** * 2-letter country code. */ country: string | null; /** * Address line 1 (Street address/PO Box/Company name). */ line1: string | null; /** * Address line 2 (Apartment/Suite/Unit/Building). */ line2: string | null; /** * ZIP or postal code. */ postal_code: string | null; /** * State/County/Province/Region. */ state: string | null; } export interface JapanAddress { /** * City/Ward. */ city: string | null; /** * Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). */ country: string | null; /** * Block/Building number. */ line1: string | null; /** * Building details. */ line2: string | null; /** * Zip/Postal Code. */ postal_code: string | null; /** * Prefecture. */ state: string | null; /** * Town/cho-me. */ town: string | null; } export interface AddressParam { /** * City, district, suburb, town, village, or ward. */ city?: string; /** * Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). */ country?: string; /** * Address line 1 (e.g., street, block, PO Box, or company name). */ line1?: string; /** * Address line 2 (e.g., apartment, suite, unit, or building). */ line2?: string; /** * ZIP or postal code. */ postal_code?: string; /** * State, county, province, prefecture, or region. */ state?: string; } export interface ShippingAddressParam extends AddressParam { /** * Address line 1 (e.g., street, PO Box, or company name). */ line1: string; } export interface JapanAddressParam extends AddressParam { /** * Town or cho-me. */ town?: string; } export interface RangeQueryParam { /** * Minimum value to filter by (exclusive) */ gt?: number; /** * Minimum value to filter by (inclusive) */ gte?: number; /** * Maximum value to filter by (exclusive) */ lt?: number; /** * Maximum value to filter by (inclusive) */ lte?: number; } /** * @docs https://stripe.com/docs/api/pagination */ export interface PaginationParams { /** * A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list. */ ending_before?: string; /** * A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. */ limit?: number; /** * A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list. */ starting_after?: string; } /** * The Stripe API uses url-encoding for requests, and stripe-node encodes a * `null` param as an empty string, because there is no concept of `null` * in url-encoding. Both `null` and `''` behave identically. */ export type Emptyable<T> = null | '' | T;