Sindbad~EG File Manager
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* A payment link is a shareable URL that will take your customers to a hosted payment page. A payment link can be shared and used multiple times.
*
* When a customer opens a payment link it will open a new [checkout session](https://stripe.com/docs/api/checkout/sessions) to render the payment page. You can use [checkout session events](https://stripe.com/docs/api/events/types#event_types-checkout.session.completed) to track payments through payment links.
*
* Related guide: [Payment Links API](https://stripe.com/docs/payment-links)
*/
interface PaymentLink {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'payment_link';
/**
* Whether the payment link's `url` is active. If `false`, customers visiting the URL will be shown a page saying that the link has been deactivated.
*/
active: boolean;
after_completion: PaymentLink.AfterCompletion;
/**
* Whether user redeemable promotion codes are enabled.
*/
allow_promotion_codes: boolean;
/**
* The ID of the Connect application that created the Payment Link.
*/
application:
| string
| Stripe.Application
| Stripe.DeletedApplication
| null;
/**
* The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account.
*/
application_fee_amount: number | null;
/**
* This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account.
*/
application_fee_percent: number | null;
automatic_tax: PaymentLink.AutomaticTax;
/**
* Configuration for collecting the customer's billing address.
*/
billing_address_collection: PaymentLink.BillingAddressCollection;
/**
* When set, provides configuration to gather active consent from customers.
*/
consent_collection: PaymentLink.ConsentCollection | null;
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* Collect additional information from your customer using custom fields. Up to 2 fields are supported.
*/
custom_fields: Array<PaymentLink.CustomField>;
custom_text: PaymentLink.CustomText;
/**
* Configuration for Customer creation during checkout.
*/
customer_creation: PaymentLink.CustomerCreation;
/**
* The custom message to be displayed to a customer when a payment link is no longer active.
*/
inactive_message: string | null;
/**
* Configuration for creating invoice for payment mode payment links.
*/
invoice_creation: PaymentLink.InvoiceCreation | null;
/**
* The line items representing what is being sold.
*/
line_items?: ApiList<Stripe.LineItem>;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* 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.
*/
metadata: Stripe.Metadata;
/**
* The account on behalf of which to charge. See the [Connect documentation](https://support.stripe.com/questions/sending-invoices-on-behalf-of-connected-accounts) for details.
*/
on_behalf_of: string | Stripe.Account | null;
/**
* Indicates the parameters to be passed to PaymentIntent creation during checkout.
*/
payment_intent_data: PaymentLink.PaymentIntentData | null;
/**
* Configuration for collecting a payment method during checkout.
*/
payment_method_collection: PaymentLink.PaymentMethodCollection;
/**
* The list of payment method types that customers can use. When `null`, Stripe will dynamically show relevant payment methods you've enabled in your [payment method settings](https://dashboard.stripe.com/settings/payment_methods).
*/
payment_method_types: Array<PaymentLink.PaymentMethodType> | null;
phone_number_collection: PaymentLink.PhoneNumberCollection;
/**
* Settings that restrict the usage of a payment link.
*/
restrictions: PaymentLink.Restrictions | null;
/**
* Configuration for collecting the customer's shipping address.
*/
shipping_address_collection: PaymentLink.ShippingAddressCollection | null;
/**
* The shipping rate options applied to the session.
*/
shipping_options: Array<PaymentLink.ShippingOption>;
/**
* Indicates the type of transaction being performed which customizes relevant text on the page, such as the submit button.
*/
submit_type: PaymentLink.SubmitType;
/**
* When creating a subscription, the specified configuration data will be used. There must be at least one line item with a recurring price to use `subscription_data`.
*/
subscription_data: PaymentLink.SubscriptionData | null;
tax_id_collection: PaymentLink.TaxIdCollection;
/**
* The account (if any) the payments will be attributed to for tax reporting, and where funds from each payment will be transferred to.
*/
transfer_data: PaymentLink.TransferData | null;
/**
* The public URL that can be shared with customers.
*/
url: string;
}
namespace PaymentLink {
interface AfterCompletion {
hosted_confirmation?: AfterCompletion.HostedConfirmation;
redirect?: AfterCompletion.Redirect;
/**
* The specified behavior after the purchase is complete.
*/
type: AfterCompletion.Type;
}
namespace AfterCompletion {
interface HostedConfirmation {
/**
* The custom message that is displayed to the customer after the purchase is complete.
*/
custom_message: string | null;
}
interface Redirect {
/**
* The URL the customer will be redirected to after the purchase is complete.
*/
url: string;
}
type Type = 'hosted_confirmation' | 'redirect';
}
interface AutomaticTax {
/**
* If `true`, tax will be calculated automatically using the customer's location.
*/
enabled: boolean;
}
type BillingAddressCollection = 'auto' | 'required';
interface ConsentCollection {
/**
* Settings related to the payment method reuse text shown in the Checkout UI.
*/
payment_method_reuse_agreement: ConsentCollection.PaymentMethodReuseAgreement | null;
/**
* If set to `auto`, enables the collection of customer consent for promotional communications.
*/
promotions: ConsentCollection.Promotions | null;
/**
* If set to `required`, it requires cutomers to accept the terms of service before being able to pay. If set to `none`, customers won't be shown a checkbox to accept the terms of service.
*/
terms_of_service: ConsentCollection.TermsOfService | null;
}
namespace ConsentCollection {
interface PaymentMethodReuseAgreement {
/**
* Determines the position and visibility of the payment method reuse agreement in the UI. When set to `auto`, Stripe's defaults will be used.
*
* When set to `hidden`, the payment method reuse agreement text will always be hidden in the UI.
*/
position: PaymentMethodReuseAgreement.Position;
}
namespace PaymentMethodReuseAgreement {
type Position = 'auto' | 'hidden';
}
type Promotions = 'auto' | 'none';
type TermsOfService = 'none' | 'required';
}
type CustomerCreation = 'always' | 'if_required';
interface CustomField {
dropdown?: CustomField.Dropdown;
/**
* String of your choice that your integration can use to reconcile this field. Must be unique to this field, alphanumeric, and up to 200 characters.
*/
key: string;
label: CustomField.Label;
numeric?: CustomField.Numeric;
/**
* Whether the customer is required to complete the field before completing the Checkout Session. Defaults to `false`.
*/
optional: boolean;
text?: CustomField.Text;
/**
* The type of the field.
*/
type: CustomField.Type;
}
namespace CustomField {
interface Dropdown {
/**
* The options available for the customer to select. Up to 200 options allowed.
*/
options: Array<Dropdown.Option>;
}
namespace Dropdown {
interface Option {
/**
* The label for the option, displayed to the customer. Up to 100 characters.
*/
label: string;
/**
* The value for this option, not displayed to the customer, used by your integration to reconcile the option selected by the customer. Must be unique to this option, alphanumeric, and up to 100 characters.
*/
value: string;
}
}
interface Label {
/**
* Custom text for the label, displayed to the customer. Up to 50 characters.
*/
custom: string | null;
/**
* The type of the label.
*/
type: 'custom';
}
interface Numeric {
/**
* The maximum character length constraint for the customer's input.
*/
maximum_length: number | null;
/**
* The minimum character length requirement for the customer's input.
*/
minimum_length: number | null;
}
interface Text {
/**
* The maximum character length constraint for the customer's input.
*/
maximum_length: number | null;
/**
* The minimum character length requirement for the customer's input.
*/
minimum_length: number | null;
}
type Type = 'dropdown' | 'numeric' | 'text';
}
interface CustomText {
/**
* Custom text that should be displayed after the payment confirmation button.
*/
after_submit: CustomText.AfterSubmit | null;
/**
* Custom text that should be displayed alongside shipping address collection.
*/
shipping_address: CustomText.ShippingAddress | null;
/**
* Custom text that should be displayed alongside the payment confirmation button.
*/
submit: CustomText.Submit | null;
/**
* Custom text that should be displayed in place of the default terms of service agreement text.
*/
terms_of_service_acceptance: CustomText.TermsOfServiceAcceptance | null;
}
namespace CustomText {
interface AfterSubmit {
/**
* Text may be up to 1200 characters in length.
*/
message: string;
}
interface ShippingAddress {
/**
* Text may be up to 1200 characters in length.
*/
message: string;
}
interface Submit {
/**
* Text may be up to 1200 characters in length.
*/
message: string;
}
interface TermsOfServiceAcceptance {
/**
* Text may be up to 1200 characters in length.
*/
message: string;
}
}
interface InvoiceCreation {
/**
* Enable creating an invoice on successful payment.
*/
enabled: boolean;
/**
* Configuration for the invoice. Default invoice values will be used if unspecified.
*/
invoice_data: InvoiceCreation.InvoiceData | null;
}
namespace InvoiceCreation {
interface InvoiceData {
/**
* The account tax IDs associated with the invoice.
*/
account_tax_ids: Array<
string | Stripe.TaxId | Stripe.DeletedTaxId
> | null;
/**
* A list of up to 4 custom fields to be displayed on the invoice.
*/
custom_fields: Array<InvoiceData.CustomField> | null;
/**
* An arbitrary string attached to the object. Often useful for displaying to users.
*/
description: string | null;
/**
* Footer to be displayed on the invoice.
*/
footer: string | null;
/**
* 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.
*/
metadata: Stripe.Metadata | null;
/**
* Options for invoice PDF rendering.
*/
rendering_options: InvoiceData.RenderingOptions | null;
}
namespace InvoiceData {
interface CustomField {
/**
* The name of the custom field.
*/
name: string;
/**
* The value of the custom field.
*/
value: string;
}
interface RenderingOptions {
/**
* How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
*/
amount_tax_display: string | null;
}
}
}
interface PaymentIntentData {
/**
* Indicates when the funds will be captured from the customer's account.
*/
capture_method: PaymentIntentData.CaptureMethod | null;
/**
* An arbitrary string attached to the object. Often useful for displaying to users.
*/
description: string | null;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that will set metadata on [Payment Intents](https://stripe.com/docs/api/payment_intents) generated from this payment link.
*/
metadata: Stripe.Metadata;
/**
* Indicates that you intend to make future payments with the payment method collected during checkout.
*/
setup_future_usage: PaymentIntentData.SetupFutureUsage | null;
/**
* Extra information about the payment. This will appear on your customer's statement when this payment succeeds in creating a charge.
*/
statement_descriptor: string | null;
/**
* Provides information about the charge that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that's set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.
*/
statement_descriptor_suffix: string | null;
/**
* A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
*/
transfer_group: string | null;
}
namespace PaymentIntentData {
type CaptureMethod = 'automatic' | 'automatic_async' | 'manual';
type SetupFutureUsage = 'off_session' | 'on_session';
}
type PaymentMethodCollection = 'always' | 'if_required';
type PaymentMethodType =
| 'affirm'
| 'afterpay_clearpay'
| 'alipay'
| 'au_becs_debit'
| 'bacs_debit'
| 'bancontact'
| 'blik'
| 'boleto'
| 'card'
| 'cashapp'
| 'eps'
| 'fpx'
| 'giropay'
| 'grabpay'
| 'ideal'
| 'klarna'
| 'konbini'
| 'link'
| 'oxxo'
| 'p24'
| 'paynow'
| 'paypal'
| 'pix'
| 'promptpay'
| 'sepa_debit'
| 'sofort'
| 'us_bank_account'
| 'wechat_pay';
interface PhoneNumberCollection {
/**
* If `true`, a phone number will be collected during checkout.
*/
enabled: boolean;
}
interface Restrictions {
completed_sessions: Restrictions.CompletedSessions;
}
namespace Restrictions {
interface CompletedSessions {
/**
* The current number of checkout sessions that have been completed on the payment link which count towards the `completed_sessions` restriction to be met.
*/
count: number;
/**
* The maximum number of checkout sessions that can be completed for the `completed_sessions` restriction to be met.
*/
limit: number;
}
}
interface ShippingAddressCollection {
/**
* An array of two-letter ISO country codes representing which countries Checkout should provide as options for shipping locations. Unsupported country codes: `AS, CX, CC, CU, HM, IR, KP, MH, FM, NF, MP, PW, SD, SY, UM, VI`.
*/
allowed_countries: Array<ShippingAddressCollection.AllowedCountry>;
}
namespace ShippingAddressCollection {
type AllowedCountry =
| 'AC'
| 'AD'
| 'AE'
| 'AF'
| 'AG'
| 'AI'
| 'AL'
| 'AM'
| 'AO'
| 'AQ'
| 'AR'
| 'AT'
| 'AU'
| 'AW'
| 'AX'
| 'AZ'
| 'BA'
| 'BB'
| 'BD'
| 'BE'
| 'BF'
| 'BG'
| 'BH'
| 'BI'
| 'BJ'
| 'BL'
| 'BM'
| 'BN'
| 'BO'
| 'BQ'
| 'BR'
| 'BS'
| 'BT'
| 'BV'
| 'BW'
| 'BY'
| 'BZ'
| 'CA'
| 'CD'
| 'CF'
| 'CG'
| 'CH'
| 'CI'
| 'CK'
| 'CL'
| 'CM'
| 'CN'
| 'CO'
| 'CR'
| 'CV'
| 'CW'
| 'CY'
| 'CZ'
| 'DE'
| 'DJ'
| 'DK'
| 'DM'
| 'DO'
| 'DZ'
| 'EC'
| 'EE'
| 'EG'
| 'EH'
| 'ER'
| 'ES'
| 'ET'
| 'FI'
| 'FJ'
| 'FK'
| 'FO'
| 'FR'
| 'GA'
| 'GB'
| 'GD'
| 'GE'
| 'GF'
| 'GG'
| 'GH'
| 'GI'
| 'GL'
| 'GM'
| 'GN'
| 'GP'
| 'GQ'
| 'GR'
| 'GS'
| 'GT'
| 'GU'
| 'GW'
| 'GY'
| 'HK'
| 'HN'
| 'HR'
| 'HT'
| 'HU'
| 'ID'
| 'IE'
| 'IL'
| 'IM'
| 'IN'
| 'IO'
| 'IQ'
| 'IS'
| 'IT'
| 'JE'
| 'JM'
| 'JO'
| 'JP'
| 'KE'
| 'KG'
| 'KH'
| 'KI'
| 'KM'
| 'KN'
| 'KR'
| 'KW'
| 'KY'
| 'KZ'
| 'LA'
| 'LB'
| 'LC'
| 'LI'
| 'LK'
| 'LR'
| 'LS'
| 'LT'
| 'LU'
| 'LV'
| 'LY'
| 'MA'
| 'MC'
| 'MD'
| 'ME'
| 'MF'
| 'MG'
| 'MK'
| 'ML'
| 'MM'
| 'MN'
| 'MO'
| 'MQ'
| 'MR'
| 'MS'
| 'MT'
| 'MU'
| 'MV'
| 'MW'
| 'MX'
| 'MY'
| 'MZ'
| 'NA'
| 'NC'
| 'NE'
| 'NG'
| 'NI'
| 'NL'
| 'NO'
| 'NP'
| 'NR'
| 'NU'
| 'NZ'
| 'OM'
| 'PA'
| 'PE'
| 'PF'
| 'PG'
| 'PH'
| 'PK'
| 'PL'
| 'PM'
| 'PN'
| 'PR'
| 'PS'
| 'PT'
| 'PY'
| 'QA'
| 'RE'
| 'RO'
| 'RS'
| 'RU'
| 'RW'
| 'SA'
| 'SB'
| 'SC'
| 'SE'
| 'SG'
| 'SH'
| 'SI'
| 'SJ'
| 'SK'
| 'SL'
| 'SM'
| 'SN'
| 'SO'
| 'SR'
| 'SS'
| 'ST'
| 'SV'
| 'SX'
| 'SZ'
| 'TA'
| 'TC'
| 'TD'
| 'TF'
| 'TG'
| 'TH'
| 'TJ'
| 'TK'
| 'TL'
| 'TM'
| 'TN'
| 'TO'
| 'TR'
| 'TT'
| 'TV'
| 'TW'
| 'TZ'
| 'UA'
| 'UG'
| 'US'
| 'UY'
| 'UZ'
| 'VA'
| 'VC'
| 'VE'
| 'VG'
| 'VN'
| 'VU'
| 'WF'
| 'WS'
| 'XK'
| 'YE'
| 'YT'
| 'ZA'
| 'ZM'
| 'ZW'
| 'ZZ';
}
interface ShippingOption {
/**
* A non-negative integer in cents representing how much to charge.
*/
shipping_amount: number;
/**
* The ID of the Shipping Rate to use for this shipping option.
*/
shipping_rate: string | Stripe.ShippingRate;
}
type SubmitType = 'auto' | 'book' | 'donate' | 'pay';
interface SubscriptionData {
/**
* The subscription's description, meant to be displayable to the customer. Use this field to optionally store an explanation of the subscription for rendering in Stripe surfaces and certain local payment methods UIs.
*/
description: string | null;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that will set metadata on [Subscriptions](https://stripe.com/docs/api/subscriptions) generated from this payment link.
*/
metadata: Stripe.Metadata;
/**
* Integer representing the number of trial period days before the customer is charged for the first time.
*/
trial_period_days: number | null;
/**
* Settings related to subscription trials.
*/
trial_settings: SubscriptionData.TrialSettings | null;
}
namespace SubscriptionData {
interface TrialSettings {
/**
* Defines how a subscription behaves when a free trial ends.
*/
end_behavior: TrialSettings.EndBehavior;
}
namespace TrialSettings {
interface EndBehavior {
/**
* Indicates how the subscription should change when the trial ends if the user did not provide a payment method.
*/
missing_payment_method: EndBehavior.MissingPaymentMethod;
}
namespace EndBehavior {
type MissingPaymentMethod = 'cancel' | 'create_invoice' | 'pause';
}
}
}
interface TaxIdCollection {
/**
* Indicates whether tax ID collection is enabled for the session.
*/
enabled: boolean;
}
interface TransferData {
/**
* The amount in cents (or local equivalent) that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
*/
amount: number | null;
/**
* The connected account receiving the transfer.
*/
destination: string | Stripe.Account;
}
}
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists