├── VERSION ├── OPENAPI_VERSION ├── API_VERSION ├── .gitattributes ├── src ├── Stripe.net │ ├── icon.png │ ├── Services │ │ ├── Cards │ │ │ ├── CardGetOptions.cs │ │ │ └── CardDeleteOptions.cs │ │ ├── BankAccounts │ │ │ ├── BankAccountGetOptions.cs │ │ │ └── BankAccountDeleteOptions.cs │ │ ├── CreditNotes │ │ │ ├── CreditNoteListLineItemsOptions.cs │ │ │ ├── CreditNoteGetOptions.cs │ │ │ └── CreditNoteVoidOptions.cs │ │ ├── Events │ │ │ └── EventGetOptions.cs │ │ ├── Files │ │ │ └── FileGetOptions.cs │ │ ├── Plans │ │ │ ├── PlanGetOptions.cs │ │ │ └── PlanDeleteOptions.cs │ │ ├── Prices │ │ │ ├── PriceGetOptions.cs │ │ │ └── PriceSearchOptions.cs │ │ ├── Quotes │ │ │ ├── QuoteGetOptions.cs │ │ │ ├── QuotePdfOptions.cs │ │ │ ├── QuoteAcceptOptions.cs │ │ │ └── QuoteCancelOptions.cs │ │ ├── TaxIds │ │ │ ├── TaxIdGetOptions.cs │ │ │ └── TaxIdDeleteOptions.cs │ │ ├── Tokens │ │ │ └── TokenGetOptions.cs │ │ ├── Topups │ │ │ ├── TopupGetOptions.cs │ │ │ └── TopupCancelOptions.cs │ │ ├── Accounts │ │ │ ├── AccountGetOptions.cs │ │ │ └── AccountDeleteOptions.cs │ │ ├── Balances │ │ │ └── BalanceGetOptions.cs │ │ ├── Charges │ │ │ ├── ChargeGetOptions.cs │ │ │ └── ChargeSearchOptions.cs │ │ ├── Coupons │ │ │ ├── CouponGetOptions.cs │ │ │ └── CouponDeleteOptions.cs │ │ ├── Disputes │ │ │ ├── DisputeGetOptions.cs │ │ │ └── DisputeCloseOptions.cs │ │ ├── Invoices │ │ │ ├── InvoiceGetOptions.cs │ │ │ ├── InvoiceSendOptions.cs │ │ │ ├── InvoiceVoidOptions.cs │ │ │ ├── InvoiceDeleteOptions.cs │ │ │ ├── InvoiceSearchOptions.cs │ │ │ ├── InvoiceMarkUncollectibleOptions.cs │ │ │ ├── InvoicePaymentSettingsPaymentMethodOptionsKonbiniOptions.cs │ │ │ └── InvoicePaymentSettingsPaymentMethodOptionsSepaDebitOptions.cs │ │ ├── Mandates │ │ │ └── MandateGetOptions.cs │ │ ├── Payouts │ │ │ ├── PayoutGetOptions.cs │ │ │ └── PayoutCancelOptions.cs │ │ ├── Products │ │ │ ├── ProductGetOptions.cs │ │ │ ├── ProductDeleteOptions.cs │ │ │ └── ProductSearchOptions.cs │ │ ├── Refunds │ │ │ ├── RefundGetOptions.cs │ │ │ └── RefundCancelOptions.cs │ │ ├── Reviews │ │ │ ├── ReviewGetOptions.cs │ │ │ └── ReviewApproveOptions.cs │ │ ├── TaxCodes │ │ │ ├── TaxCodeGetOptions.cs │ │ │ └── TaxCodeListOptions.cs │ │ ├── TaxRates │ │ │ └── TaxRateGetOptions.cs │ │ ├── Customers │ │ │ ├── CustomerGetOptions.cs │ │ │ ├── CustomerDeleteOptions.cs │ │ │ ├── CustomerSearchOptions.cs │ │ │ └── CustomerDeleteDiscountOptions.cs │ │ ├── FileLinks │ │ │ └── FileLinkGetOptions.cs │ │ ├── Sources │ │ │ ├── SourceDetachOptions.cs │ │ │ └── SourceWechatCreateOptions.cs │ │ ├── Transfers │ │ │ └── TransferGetOptions.cs │ │ ├── Billing │ │ │ ├── Alerts │ │ │ │ ├── AlertGetOptions.cs │ │ │ │ ├── AlertActivateOptions.cs │ │ │ │ ├── AlertArchiveOptions.cs │ │ │ │ └── AlertDeactivateOptions.cs │ │ │ ├── Meters │ │ │ │ ├── MeterGetOptions.cs │ │ │ │ ├── MeterDeactivateOptions.cs │ │ │ │ └── MeterReactivateOptions.cs │ │ │ ├── CreditGrants │ │ │ │ ├── CreditGrantGetOptions.cs │ │ │ │ ├── CreditGrantExpireOptions.cs │ │ │ │ └── CreditGrantVoidGrantOptions.cs │ │ │ └── CreditBalanceTransactions │ │ │ │ └── CreditBalanceTransactionGetOptions.cs │ │ ├── Climate │ │ │ ├── Orders │ │ │ │ ├── OrderGetOptions.cs │ │ │ │ ├── OrderListOptions.cs │ │ │ │ └── OrderCancelOptions.cs │ │ │ ├── Products │ │ │ │ ├── ProductGetOptions.cs │ │ │ │ └── ProductListOptions.cs │ │ │ └── Suppliers │ │ │ │ ├── SupplierGetOptions.cs │ │ │ │ └── SupplierListOptions.cs │ │ ├── Issuing │ │ │ ├── Cards │ │ │ │ └── CardGetOptions.cs │ │ │ ├── Tokens │ │ │ │ └── TokenGetOptions.cs │ │ │ ├── Disputes │ │ │ │ └── DisputeGetOptions.cs │ │ │ ├── Cardholders │ │ │ │ └── CardholderGetOptions.cs │ │ │ ├── Transactions │ │ │ │ └── TransactionGetOptions.cs │ │ │ ├── Authorizations │ │ │ │ └── AuthorizationGetOptions.cs │ │ │ ├── PhysicalBundles │ │ │ │ └── PhysicalBundleGetOptions.cs │ │ │ └── PersonalizationDesigns │ │ │ │ └── PersonalizationDesignGetOptions.cs │ │ ├── Tax │ │ │ ├── Settings │ │ │ │ └── SettingsGetOptions.cs │ │ │ ├── Calculations │ │ │ │ └── CalculationGetOptions.cs │ │ │ ├── Transactions │ │ │ │ └── TransactionGetOptions.cs │ │ │ ├── Registrations │ │ │ │ └── RegistrationGetOptions.cs │ │ │ ├── CalculationLineItems │ │ │ │ └── CalculationLineItemListOptions.cs │ │ │ └── TransactionLineItems │ │ │ │ └── TransactionLineItemListOptions.cs │ │ ├── V2 │ │ │ ├── Core │ │ │ │ ├── Events │ │ │ │ │ └── EventGetOptions.cs │ │ │ │ ├── AccountTokens │ │ │ │ │ └── AccountTokenGetOptions.cs │ │ │ │ ├── Accounts │ │ │ │ │ ├── Persons │ │ │ │ │ │ ├── PersonGetOptions.cs │ │ │ │ │ │ ├── PersonDeleteOptions.cs │ │ │ │ │ │ └── PersonListOptions.cs │ │ │ │ │ └── PersonTokens │ │ │ │ │ │ └── PersonTokenGetOptions.cs │ │ │ │ └── EventDestinations │ │ │ │ │ ├── EventDestinationPingOptions.cs │ │ │ │ │ ├── EventDestinationDeleteOptions.cs │ │ │ │ │ ├── EventDestinationEnableOptions.cs │ │ │ │ │ └── EventDestinationDisableOptions.cs │ │ │ └── Billing │ │ │ │ └── MeterEventSessions │ │ │ │ └── MeterEventSessionCreateOptions.cs │ │ ├── CountrySpecs │ │ │ ├── CountrySpecGetOptions.cs │ │ │ └── CountrySpecListOptions.cs │ │ ├── InvoiceItems │ │ │ ├── InvoiceItemGetOptions.cs │ │ │ └── InvoiceItemDeleteOptions.cs │ │ ├── PaymentLinks │ │ │ └── PaymentLinkGetOptions.cs │ │ ├── ShippingRates │ │ │ └── ShippingRateGetOptions.cs │ │ ├── Subscriptions │ │ │ ├── SubscriptionGetOptions.cs │ │ │ ├── SubscriptionSearchOptions.cs │ │ │ ├── SubscriptionDeleteDiscountOptions.cs │ │ │ ├── SubscriptionPaymentSettingsPaymentMethodOptionsKonbiniOptions.cs │ │ │ └── SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebitOptions.cs │ │ ├── Terminal │ │ │ ├── Readers │ │ │ │ ├── ReaderGetOptions.cs │ │ │ │ ├── ReaderDeleteOptions.cs │ │ │ │ └── ReaderCancelActionOptions.cs │ │ │ ├── Locations │ │ │ │ ├── LocationGetOptions.cs │ │ │ │ ├── LocationListOptions.cs │ │ │ │ └── LocationDeleteOptions.cs │ │ │ └── Configurations │ │ │ │ ├── ConfigurationGetOptions.cs │ │ │ │ └── ConfigurationDeleteOptions.cs │ │ ├── AccountPersons │ │ │ ├── AccountPersonGetOptions.cs │ │ │ └── AccountPersonDeleteOptions.cs │ │ ├── Checkout │ │ │ ├── Sessions │ │ │ │ ├── SessionGetOptions.cs │ │ │ │ ├── SessionExpireOptions.cs │ │ │ │ └── SessionPaymentMethodOptionsPayByBankOptions.cs │ │ │ └── SessionLineItems │ │ │ │ └── SessionLineItemListOptions.cs │ │ ├── CustomerTaxIds │ │ │ ├── CustomerTaxIdGetOptions.cs │ │ │ ├── CustomerTaxIdListOptions.cs │ │ │ └── CustomerTaxIdDeleteOptions.cs │ │ ├── PaymentMethods │ │ │ ├── PaymentMethodGetOptions.cs │ │ │ ├── PaymentMethodAlmaOptions.cs │ │ │ ├── PaymentMethodBlikOptions.cs │ │ │ ├── PaymentMethodDetachOptions.cs │ │ │ ├── PaymentMethodLinkOptions.cs │ │ │ ├── PaymentMethodMbWayOptions.cs │ │ │ ├── PaymentMethodOxxoOptions.cs │ │ │ ├── PaymentMethodPaycoOptions.cs │ │ │ ├── PaymentMethodPixOptions.cs │ │ │ ├── PaymentMethodSwishOptions.cs │ │ │ ├── PaymentMethodTwintOptions.cs │ │ │ ├── PaymentMethodZipOptions.cs │ │ │ ├── PaymentMethodAffirmOptions.cs │ │ │ ├── PaymentMethodAlipayOptions.cs │ │ │ ├── PaymentMethodBillieOptions.cs │ │ │ ├── PaymentMethodCashappOptions.cs │ │ │ ├── PaymentMethodCryptoOptions.cs │ │ │ ├── PaymentMethodGiropayOptions.cs │ │ │ ├── PaymentMethodGrabpayOptions.cs │ │ │ ├── PaymentMethodKonbiniOptions.cs │ │ │ ├── PaymentMethodKrCardOptions.cs │ │ │ ├── PaymentMethodPaynowOptions.cs │ │ │ ├── PaymentMethodPaypalOptions.cs │ │ │ ├── PaymentMethodAmazonPayOptions.cs │ │ │ ├── PaymentMethodBancontactOptions.cs │ │ │ ├── PaymentMethodKakaoPayOptions.cs │ │ │ ├── PaymentMethodMobilepayOptions.cs │ │ │ ├── PaymentMethodMultibancoOptions.cs │ │ │ ├── PaymentMethodPayByBankOptions.cs │ │ │ ├── PaymentMethodPromptpayOptions.cs │ │ │ ├── PaymentMethodRevolutPayOptions.cs │ │ │ ├── PaymentMethodSamsungPayOptions.cs │ │ │ ├── PaymentMethodSatispayOptions.cs │ │ │ ├── PaymentMethodWechatPayOptions.cs │ │ │ ├── PaymentMethodCustomerBalanceOptions.cs │ │ │ ├── PaymentMethodInteracPresentOptions.cs │ │ │ └── PaymentMethodAfterpayClearpayOptions.cs │ │ ├── PaymentRecords │ │ │ └── PaymentRecordGetOptions.cs │ │ ├── PromotionCodes │ │ │ └── PromotionCodeGetOptions.cs │ │ ├── QuoteLineItems │ │ │ └── QuoteLineItemListOptions.cs │ │ ├── Radar │ │ │ ├── ValueLists │ │ │ │ ├── ValueListGetOptions.cs │ │ │ │ └── ValueListDeleteOptions.cs │ │ │ ├── ValueListItems │ │ │ │ ├── ValueListItemGetOptions.cs │ │ │ │ └── ValueListItemDeleteOptions.cs │ │ │ └── EarlyFraudWarnings │ │ │ │ └── EarlyFraudWarningGetOptions.cs │ │ ├── ApplePayDomains │ │ │ ├── ApplePayDomainGetOptions.cs │ │ │ └── ApplePayDomainDeleteOptions.cs │ │ ├── ApplicationFees │ │ │ └── ApplicationFeeGetOptions.cs │ │ ├── BalanceSettings │ │ │ └── BalanceSettingsGetOptions.cs │ │ ├── EphemeralKeys │ │ │ └── EphemeralKeyDeleteOptions.cs │ │ ├── Forwarding │ │ │ └── Requests │ │ │ │ └── RequestGetOptions.cs │ │ ├── InvoicePayments │ │ │ └── InvoicePaymentGetOptions.cs │ │ ├── ProductFeatures │ │ │ ├── ProductFeatureGetOptions.cs │ │ │ ├── ProductFeatureListOptions.cs │ │ │ └── ProductFeatureDeleteOptions.cs │ │ ├── WebhookEndpoints │ │ │ ├── WebhookEndpointGetOptions.cs │ │ │ ├── WebhookEndpointDeleteOptions.cs │ │ │ └── WebhookEndpointListOptions.cs │ │ ├── ConfirmationTokens │ │ │ └── ConfirmationTokenGetOptions.cs │ │ ├── Entitlements │ │ │ ├── Features │ │ │ │ └── FeatureGetOptions.cs │ │ │ └── ActiveEntitlements │ │ │ │ └── ActiveEntitlementGetOptions.cs │ │ ├── PaymentIntents │ │ │ ├── PaymentIntentSearchOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPixOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataZipOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataAlmaOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataBlikOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataLinkOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataMbWayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataOxxoOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPaycoOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataSwishOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataTwintOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataAffirmOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataAlipayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataBillieOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataCashappOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataCryptoOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataGiropayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataGrabpayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataKakaoPayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataKonbiniOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataKrCardOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPaynowOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPaypalOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataSatispayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataAmazonPayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataBancontactOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataMobilepayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataMultibancoOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPayByBankOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataPromptpayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataRevolutPayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataSamsungPayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataWechatPayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodOptionsPayByBankOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataCustomerBalanceOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataInteracPresentOptions.cs │ │ │ ├── PaymentIntentPaymentMethodDataAfterpayClearpayOptions.cs │ │ │ ├── PaymentIntentPaymentMethodOptionsInteracPresentOptions.cs │ │ │ └── PaymentIntentMandateDataCustomerAcceptanceOfflineOptions.cs │ │ ├── Reporting │ │ │ ├── ReportRuns │ │ │ │ └── ReportRunGetOptions.cs │ │ │ └── ReportTypes │ │ │ │ ├── ReportTypeGetOptions.cs │ │ │ │ └── ReportTypeListOptions.cs │ │ ├── SubscriptionItems │ │ │ └── SubscriptionItemGetOptions.cs │ │ ├── TestHelpers │ │ │ ├── Refunds │ │ │ │ └── RefundExpireOptions.cs │ │ │ ├── TestClocks │ │ │ │ ├── TestClockGetOptions.cs │ │ │ │ ├── TestClockListOptions.cs │ │ │ │ └── TestClockDeleteOptions.cs │ │ │ ├── Issuing │ │ │ │ ├── Cards │ │ │ │ │ ├── CardFailCardOptions.cs │ │ │ │ │ ├── CardReturnCardOptions.cs │ │ │ │ │ ├── CardShipCardOptions.cs │ │ │ │ │ ├── CardSubmitCardOptions.cs │ │ │ │ │ └── CardDeliverCardOptions.cs │ │ │ │ ├── Authorizations │ │ │ │ │ └── AuthorizationExpireOptions.cs │ │ │ │ └── PersonalizationDesigns │ │ │ │ │ ├── PersonalizationDesignActivateOptions.cs │ │ │ │ │ └── PersonalizationDesignDeactivateOptions.cs │ │ │ ├── Treasury │ │ │ │ ├── OutboundPayments │ │ │ │ │ ├── OutboundPaymentFailOptions.cs │ │ │ │ │ └── OutboundPaymentPostOptions.cs │ │ │ │ ├── InboundTransfers │ │ │ │ │ ├── InboundTransferSucceedOptions.cs │ │ │ │ │ └── InboundTransferReturnInboundTransferOptions.cs │ │ │ │ └── OutboundTransfers │ │ │ │ │ ├── OutboundTransferFailOptions.cs │ │ │ │ │ └── OutboundTransferPostOptions.cs │ │ │ ├── Terminal │ │ │ │ └── Readers │ │ │ │ │ └── ReaderTimeoutInputCollectionOptions.cs │ │ │ └── ConfirmationTokens │ │ │ │ ├── ConfirmationTokenPaymentMethodDataAlmaOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataBlikOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataLinkOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataMbWayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataOxxoOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPaycoOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPixOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataSwishOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataTwintOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataZipOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataAffirmOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataAlipayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataBillieOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataCashappOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataCryptoOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataGiropayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataGrabpayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataKonbiniOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataKrCardOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPaynowOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPaypalOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataAmazonPayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataBancontactOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataKakaoPayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataMobilepayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataMultibancoOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPayByBankOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataPromptpayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataRevolutPayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataSamsungPayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataSatispayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataWechatPayOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataCustomerBalanceOptions.cs │ │ │ │ ├── ConfirmationTokenPaymentMethodDataInteracPresentOptions.cs │ │ │ │ └── ConfirmationTokenPaymentMethodDataAfterpayClearpayOptions.cs │ │ ├── TransferReversals │ │ │ ├── TransferReversalGetOptions.cs │ │ │ └── TransferReversalListOptions.cs │ │ ├── Treasury │ │ │ ├── Transactions │ │ │ │ └── TransactionGetOptions.cs │ │ │ ├── CreditReversals │ │ │ │ └── CreditReversalGetOptions.cs │ │ │ ├── DebitReversals │ │ │ │ └── DebitReversalGetOptions.cs │ │ │ ├── ReceivedCredits │ │ │ │ └── ReceivedCreditGetOptions.cs │ │ │ ├── ReceivedDebits │ │ │ │ └── ReceivedDebitGetOptions.cs │ │ │ ├── FinancialAccounts │ │ │ │ └── FinancialAccountGetOptions.cs │ │ │ ├── InboundTransfers │ │ │ │ ├── InboundTransferGetOptions.cs │ │ │ │ └── InboundTransferCancelOptions.cs │ │ │ ├── OutboundPayments │ │ │ │ ├── OutboundPaymentGetOptions.cs │ │ │ │ └── OutboundPaymentCancelOptions.cs │ │ │ ├── OutboundTransfers │ │ │ │ ├── OutboundTransferGetOptions.cs │ │ │ │ └── OutboundTransferCancelOptions.cs │ │ │ ├── TransactionEntries │ │ │ │ └── TransactionEntryGetOptions.cs │ │ │ └── FinancialAccountFeatures │ │ │ │ └── FinancialAccountFeaturesGetOptions.cs │ │ ├── AccountCapabilities │ │ │ ├── AccountCapabilityGetOptions.cs │ │ │ └── AccountCapabilityListOptions.cs │ │ ├── AccountLoginLinks │ │ │ └── AccountLoginLinkCreateOptions.cs │ │ ├── BalanceTransactions │ │ │ └── BalanceTransactionGetOptions.cs │ │ ├── SourceTransactions │ │ │ └── SourceTransactionListOptions.cs │ │ ├── ApplicationFeeRefunds │ │ │ ├── ApplicationFeeRefundGetOptions.cs │ │ │ └── ApplicationFeeRefundListOptions.cs │ │ ├── CustomerCashBalances │ │ │ └── CustomerCashBalanceGetOptions.cs │ │ ├── PaymentAttemptRecords │ │ │ └── PaymentAttemptRecordGetOptions.cs │ │ ├── PaymentLinkLineItems │ │ │ └── PaymentLinkLineItemListOptions.cs │ │ ├── PaymentMethodDomains │ │ │ ├── PaymentMethodDomainGetOptions.cs │ │ │ └── PaymentMethodDomainValidateOptions.cs │ │ ├── SubscriptionSchedules │ │ │ └── SubscriptionScheduleGetOptions.cs │ │ ├── AccountExternalAccounts │ │ │ ├── AccountExternalAccountGetOptions.cs │ │ │ └── AccountExternalAccountDeleteOptions.cs │ │ ├── CustomerPaymentMethods │ │ │ └── CustomerPaymentMethodGetOptions.cs │ │ ├── CustomerPaymentSources │ │ │ ├── CustomerPaymentSourceGetOptions.cs │ │ │ └── CustomerPaymentSourceDeleteOptions.cs │ │ ├── FinancialConnections │ │ │ ├── Accounts │ │ │ │ ├── AccountGetOptions.cs │ │ │ │ └── AccountDisconnectOptions.cs │ │ │ ├── Sessions │ │ │ │ └── SessionGetOptions.cs │ │ │ └── Transactions │ │ │ │ └── TransactionGetOptions.cs │ │ ├── Sigma │ │ │ └── ScheduledQueryRuns │ │ │ │ ├── ScheduledQueryRunGetOptions.cs │ │ │ │ └── ScheduledQueryRunListOptions.cs │ │ ├── BillingPortal │ │ │ └── Configurations │ │ │ │ └── ConfigurationGetOptions.cs │ │ ├── SetupIntents │ │ │ ├── SetupIntentPaymentMethodDataPixOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataZipOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataAffirmOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataAlipayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataAlmaOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataBillieOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataBlikOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataCryptoOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataKrCardOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataLinkOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataMbWayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataOxxoOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataPaycoOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataPaynowOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataPaypalOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataSwishOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataTwintOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataCashappOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataGiropayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataGrabpayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataKakaoPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataKonbiniOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataSatispayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataAmazonPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataBancontactOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataMobilepayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataMultibancoOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataPayByBankOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataPromptpayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataRevolutPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataSamsungPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataWechatPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodOptionsAmazonPayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataAfterpayClearpayOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataCustomerBalanceOptions.cs │ │ │ ├── SetupIntentPaymentMethodDataInteracPresentOptions.cs │ │ │ ├── SetupIntentPaymentMethodOptionsCardPresentOptions.cs │ │ │ └── SetupIntentMandateDataCustomerAcceptanceOfflineOptions.cs │ │ ├── Identity │ │ │ ├── VerificationReports │ │ │ │ └── VerificationReportGetOptions.cs │ │ │ └── VerificationSessions │ │ │ │ ├── VerificationSessionGetOptions.cs │ │ │ │ ├── VerificationSessionCancelOptions.cs │ │ │ │ └── VerificationSessionRedactOptions.cs │ │ ├── CustomerBalanceTransactions │ │ │ └── CustomerBalanceTransactionGetOptions.cs │ │ ├── InvoiceRenderingTemplates │ │ │ ├── InvoiceRenderingTemplateArchiveOptions.cs │ │ │ └── InvoiceRenderingTemplateUnarchiveOptions.cs │ │ ├── PaymentMethodConfigurations │ │ │ └── PaymentMethodConfigurationGetOptions.cs │ │ ├── CustomerCashBalanceTransactions │ │ │ ├── CustomerCashBalanceTransactionGetOptions.cs │ │ │ └── CustomerCashBalanceTransactionListOptions.cs │ │ ├── QuoteComputedUpfrontLineItems │ │ │ └── QuoteComputedUpfrontLineItemsListOptions.cs │ │ ├── AccountSessions │ │ │ ├── AccountSessionComponentsDocumentsFeaturesOptions.cs │ │ │ ├── AccountSessionComponentsPayoutDetailsFeaturesOptions.cs │ │ │ ├── AccountSessionComponentsPayoutsListFeaturesOptions.cs │ │ │ ├── AccountSessionComponentsTaxSettingsFeaturesOptions.cs │ │ │ └── AccountSessionComponentsTaxRegistrationsFeaturesOptions.cs │ │ ├── PaymentIntentAmountDetailsLineItems │ │ │ └── PaymentIntentAmountDetailsLineItemListOptions.cs │ │ └── _interfaces │ │ │ └── INestedOptions.cs │ ├── Constants │ │ ├── Version.cs │ │ ├── SourceUsage.cs │ │ ├── BankAccountHolderType.cs │ │ └── ApiVersion.cs │ ├── Properties │ │ └── InternalsVisibleTo.cs │ └── Entities │ │ ├── Mandates │ │ ├── MandateMultiUse.cs │ │ ├── MandateCustomerAcceptanceOffline.cs │ │ ├── MandatePaymentMethodDetailsCard.cs │ │ ├── MandatePaymentMethodDetailsLink.cs │ │ ├── MandatePaymentMethodDetailsKlarna.cs │ │ ├── MandatePaymentMethodDetailsKrCard.cs │ │ ├── MandatePaymentMethodDetailsCashapp.cs │ │ ├── MandatePaymentMethodDetailsKakaoPay.cs │ │ ├── MandatePaymentMethodDetailsNaverPay.cs │ │ ├── MandatePaymentMethodDetailsAmazonPay.cs │ │ ├── MandatePaymentMethodDetailsRevolutPay.cs │ │ └── MandatePaymentMethodDetailsNzBankAccount.cs │ │ ├── PaymentMethods │ │ ├── PaymentMethodPix.cs │ │ ├── PaymentMethodZip.cs │ │ ├── PaymentMethodAlma.cs │ │ ├── PaymentMethodBlik.cs │ │ ├── PaymentMethodMbWay.cs │ │ ├── PaymentMethodOxxo.cs │ │ ├── PaymentMethodPayco.cs │ │ ├── PaymentMethodSwish.cs │ │ ├── PaymentMethodTwint.cs │ │ ├── PaymentMethodAffirm.cs │ │ ├── PaymentMethodAlipay.cs │ │ ├── PaymentMethodBillie.cs │ │ ├── PaymentMethodCrypto.cs │ │ ├── PaymentMethodGiropay.cs │ │ ├── PaymentMethodGrabpay.cs │ │ ├── PaymentMethodKonbini.cs │ │ ├── PaymentMethodPaynow.cs │ │ ├── PaymentMethodKakaoPay.cs │ │ ├── PaymentMethodSatispay.cs │ │ ├── PaymentMethodAmazonPay.cs │ │ ├── PaymentMethodBancontact.cs │ │ ├── PaymentMethodMobilepay.cs │ │ ├── PaymentMethodMultibanco.cs │ │ ├── PaymentMethodPayByBank.cs │ │ ├── PaymentMethodPromptpay.cs │ │ ├── PaymentMethodRevolutPay.cs │ │ ├── PaymentMethodSamsungPay.cs │ │ ├── PaymentMethodWechatPay.cs │ │ ├── PaymentMethodCardWalletLink.cs │ │ ├── PaymentMethodCustomerBalance.cs │ │ ├── PaymentMethodAfterpayClearpay.cs │ │ ├── PaymentMethodCardWalletApplePay.cs │ │ ├── PaymentMethodCardWalletGooglePay.cs │ │ ├── PaymentMethodCardWalletSamsungPay.cs │ │ └── PaymentMethodCardWalletAmexExpressCheckout.cs │ │ ├── Refunds │ │ ├── RefundDestinationDetailsEps.cs │ │ ├── RefundDestinationDetailsPix.cs │ │ ├── RefundDestinationDetailsZip.cs │ │ ├── RefundDestinationDetailsAlma.cs │ │ ├── RefundDestinationDetailsTwint.cs │ │ ├── RefundDestinationDetailsAffirm.cs │ │ ├── RefundDestinationDetailsAlipay.cs │ │ ├── RefundDestinationDetailsKlarna.cs │ │ ├── RefundDestinationDetailsPaynow.cs │ │ ├── RefundDestinationDetailsSofort.cs │ │ ├── RefundDestinationDetailsCashapp.cs │ │ ├── RefundDestinationDetailsGiropay.cs │ │ ├── RefundDestinationDetailsGrabpay.cs │ │ ├── RefundDestinationDetailsRevolut.cs │ │ ├── RefundDestinationDetailsAmazonPay.cs │ │ ├── RefundDestinationDetailsWechatPay.cs │ │ ├── RefundDestinationDetailsAuBankTransfer.cs │ │ ├── RefundDestinationDetailsNzBankTransfer.cs │ │ ├── RefundDestinationDetailsAfterpayClearpay.cs │ │ └── RefundDestinationDetailsCustomerCashBalance.cs │ │ ├── Charges │ │ ├── ChargePaymentMethodDetailsZip.cs │ │ ├── ChargePaymentMethodDetailsMbWay.cs │ │ ├── ChargePaymentMethodDetailsTwint.cs │ │ ├── ChargePaymentMethodDetailsWechat.cs │ │ ├── ChargePaymentMethodDetailsPayByBank.cs │ │ ├── ChargePaymentMethodDetailsStripeAccount.cs │ │ ├── ChargePaymentMethodDetailsCardWalletLink.cs │ │ ├── ChargePaymentMethodDetailsCustomerBalance.cs │ │ ├── ChargePaymentMethodDetailsCardWalletApplePay.cs │ │ ├── ChargePaymentMethodDetailsCardWalletGooglePay.cs │ │ ├── ChargePaymentMethodDetailsCardWalletSamsungPay.cs │ │ └── ChargePaymentMethodDetailsCardWalletAmexExpressCheckout.cs │ │ ├── Tax │ │ └── Settings │ │ │ └── SettingsStatusDetailsActive.cs │ │ ├── PaymentRecords │ │ ├── PaymentRecordPaymentMethodDetailsZip.cs │ │ ├── PaymentRecordPaymentMethodDetailsMbWay.cs │ │ ├── PaymentRecordPaymentMethodDetailsTwint.cs │ │ ├── PaymentRecordPaymentMethodDetailsWechat.cs │ │ ├── PaymentRecordPaymentMethodDetailsPayByBank.cs │ │ ├── PaymentRecordPaymentMethodDetailsStripeAccount.cs │ │ ├── PaymentRecordPaymentMethodDetailsCustomerBalance.cs │ │ └── PaymentRecordPaymentMethodDetailsCardWalletGooglePay.cs │ │ ├── SetupAttempts │ │ ├── SetupAttemptPaymentMethodDetailsLink.cs │ │ ├── SetupAttemptPaymentMethodDetailsPayto.cs │ │ ├── SetupAttemptPaymentMethodDetailsBoleto.cs │ │ ├── SetupAttemptPaymentMethodDetailsKlarna.cs │ │ ├── SetupAttemptPaymentMethodDetailsKrCard.cs │ │ ├── SetupAttemptPaymentMethodDetailsPaypal.cs │ │ ├── SetupAttemptPaymentMethodDetailsCashapp.cs │ │ ├── SetupAttemptPaymentMethodDetailsKakaoPay.cs │ │ ├── SetupAttemptPaymentMethodDetailsAcssDebit.cs │ │ ├── SetupAttemptPaymentMethodDetailsAmazonPay.cs │ │ ├── SetupAttemptPaymentMethodDetailsBacsDebit.cs │ │ ├── SetupAttemptPaymentMethodDetailsRevolutPay.cs │ │ ├── SetupAttemptPaymentMethodDetailsSepaDebit.cs │ │ ├── SetupAttemptPaymentMethodDetailsAuBecsDebit.cs │ │ ├── SetupAttemptPaymentMethodDetailsNzBankAccount.cs │ │ ├── SetupAttemptPaymentMethodDetailsUsBankAccount.cs │ │ ├── SetupAttemptPaymentMethodDetailsCardWalletApplePay.cs │ │ └── SetupAttemptPaymentMethodDetailsCardWalletGooglePay.cs │ │ ├── SetupIntents │ │ ├── SetupIntentPaymentMethodOptionsAmazonPay.cs │ │ └── SetupIntentPaymentMethodOptionsCardPresent.cs │ │ ├── AccountSessions │ │ ├── AccountSessionComponentsDocumentsFeatures.cs │ │ ├── AccountSessionComponentsPayoutsListFeatures.cs │ │ ├── AccountSessionComponentsTaxSettingsFeatures.cs │ │ ├── AccountSessionComponentsPayoutDetailsFeatures.cs │ │ └── AccountSessionComponentsTaxRegistrationsFeatures.cs │ │ ├── ConfirmationTokens │ │ ├── ConfirmationTokenPaymentMethodPreviewPix.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewZip.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewAlma.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewBlik.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewMbWay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewOxxo.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewPayco.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewSwish.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewTwint.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewAffirm.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewAlipay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewBillie.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewCrypto.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewPaynow.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewGiropay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewGrabpay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewKakaoPay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewKonbini.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewSatispay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewAmazonPay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewBancontact.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewMobilepay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewMultibanco.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewPayByBank.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewPromptpay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewRevolutPay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewSamsungPay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewWechatPay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewCardWalletLink.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewCustomerBalance.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewAfterpayClearpay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewCardWalletApplePay.cs │ │ ├── ConfirmationTokenPaymentMethodPreviewCardWalletGooglePay.cs │ │ └── ConfirmationTokenPaymentMethodPreviewCardWalletSamsungPay.cs │ │ ├── Identity │ │ ├── VerificationReports │ │ │ └── VerificationReportOptionsIdNumber.cs │ │ └── VerificationSessions │ │ │ └── VerificationSessionOptionsIdNumber.cs │ │ ├── PaymentIntents │ │ ├── PaymentIntentPaymentMethodOptionsPayByBank.cs │ │ └── PaymentIntentPaymentMethodOptionsInteracPresent.cs │ │ ├── PaymentAttemptRecords │ │ ├── PaymentAttemptRecordPaymentMethodDetailsZip.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsMbWay.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsTwint.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsWechat.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsPayByBank.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsStripeAccount.cs │ │ ├── PaymentAttemptRecordPaymentMethodDetailsCustomerBalance.cs │ │ └── PaymentAttemptRecordPaymentMethodDetailsCardWalletGooglePay.cs │ │ ├── Invoices │ │ ├── InvoicePaymentSettingsPaymentMethodOptionsKonbini.cs │ │ └── InvoicePaymentSettingsPaymentMethodOptionsSepaDebit.cs │ │ └── Subscriptions │ │ ├── SubscriptionPaymentSettingsPaymentMethodOptionsKonbini.cs │ │ └── SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebit.cs └── StripeTests │ ├── Resources │ ├── api_fixtures │ │ ├── connection_token.json │ │ ├── login_link.json │ │ ├── account_link.json │ │ ├── balance_transaction.json │ │ ├── billing_portal │ │ │ └── session.json │ │ ├── ephemeral_key.json │ │ └── events │ │ │ └── event_pre_2017-05-25.json │ ├── file_upload_logo.png │ ├── pageable_models │ │ ├── 2.json │ │ ├── 0b.json │ │ ├── 0.json │ │ └── 1.json │ └── oauth_fixtures │ │ └── token_response.json │ ├── xunit.runner.json │ ├── Wholesome │ └── README.md │ └── Infrastructure │ └── TestData │ ├── TestObjectDateTime.cs │ └── TestService.cs ├── .github └── CODEOWNERS ├── .gitignore ├── .vscode └── extensions.json └── .config └── dotnet-tools.json /VERSION: -------------------------------------------------------------------------------- 1 | 50.1.0 2 | -------------------------------------------------------------------------------- /OPENAPI_VERSION: -------------------------------------------------------------------------------- 1 | v2143 -------------------------------------------------------------------------------- /API_VERSION: -------------------------------------------------------------------------------- 1 | ee56c4b73d856e48409065f8d7e7c82c2e805c38 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.cs text diff=csharp 4 | *.html text diff=html 5 | -------------------------------------------------------------------------------- /src/Stripe.net/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-dotnet/master/src/Stripe.net/icon.png -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # All files should be reviewed by a member of the SDKs team 2 | * @stripe/api-library-reviewers 3 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/connection_token.json: -------------------------------------------------------------------------------- 1 | { 2 | "object": "terminal.connection_token", 3 | "secret": "pst_test_123" 4 | } -------------------------------------------------------------------------------- /src/StripeTests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "appDomain": "denied", 3 | "diagnosticMessages": true, 4 | "longRunningTestSeconds": 10 5 | } 6 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Cards/CardGetOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public class CardGetOptions : BaseOptions 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/file_upload_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-dotnet/master/src/StripeTests/Resources/file_upload_logo.png -------------------------------------------------------------------------------- /src/Stripe.net/Constants/Version.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | internal class Version 4 | { 5 | public const string Current = "50.1.0"; 6 | } 7 | } -------------------------------------------------------------------------------- /src/Stripe.net/Services/BankAccounts/BankAccountGetOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public class BankAccountGetOptions : BaseOptions 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # build 2 | [Bb]in/ 3 | [Oo]bj/ 4 | *.nupkg 5 | 6 | # user 7 | *.user 8 | *.userprefs 9 | .vs 10 | 11 | project.lock.json 12 | 13 | .DS_Store 14 | .idea/ 15 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CreditNotes/CreditNoteListLineItemsOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public class CreditNoteListLineItemsOptions : ListOptions 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/login_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "object": "login_link", 3 | "created": 1528377855, 4 | "url": "https://connect.stripe.com/express/1234567890ab" 5 | } 6 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Events/EventGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class EventGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Files/FileGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class FileGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Plans/PlanGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PlanGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Prices/PriceGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PriceGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Quotes/QuoteGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuoteGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Quotes/QuotePdfOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuotePdfOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TaxIds/TaxIdGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TaxIdGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tokens/TokenGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TokenGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Topups/TopupGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TopupGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "EditorConfig.editorconfig", // default 4 | "ms-dotnettools.csdevkit" // intellisense, will install other extensions 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/Stripe.net/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Newtonsoft.Json")] 4 | [assembly: InternalsVisibleTo("StripeTests")] 5 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Accounts/AccountGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Balances/BalanceGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class BalanceGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Cards/CardDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CardDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Charges/ChargeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Coupons/CouponGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CouponGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Disputes/DisputeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class DisputeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Mandates/MandateGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandateGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Payouts/PayoutGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PayoutGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Plans/PlanDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PlanDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Products/ProductGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Quotes/QuoteAcceptOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuoteAcceptOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Quotes/QuoteCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuoteCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Refunds/RefundGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Reviews/ReviewGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ReviewGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TaxCodes/TaxCodeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TaxCodeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TaxIds/TaxIdDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TaxIdDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TaxRates/TaxRateGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TaxRateGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Topups/TopupCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TopupCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Charges/ChargeSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargeSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Coupons/CouponDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CouponDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Customers/CustomerGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Disputes/DisputeCloseOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class DisputeCloseOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/FileLinks/FileLinkGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class FileLinkGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceSendOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceSendOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceVoidOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceVoidOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Payouts/PayoutCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PayoutCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Prices/PriceSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PriceSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Refunds/RefundCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Reviews/ReviewApproveOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ReviewApproveOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Sources/SourceDetachOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SourceDetachOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TaxCodes/TaxCodeListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TaxCodeListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Transfers/TransferGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TransferGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/account_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "object": "account_link", 3 | "created": 1544220862, 4 | "expires_at": 1544221162, 5 | "url": "https://stripe.com/hv/12345" 6 | } 7 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Accounts/AccountDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Alerts/AlertGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class AlertGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Meters/MeterGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class MeterGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Orders/OrderGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class OrderGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CreditNotes/CreditNoteGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CreditNoteGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Customers/CustomerDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Cards/CardGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class CardGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Tokens/TokenGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class TokenGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Products/ProductDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Products/ProductSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Sources/SourceWechatCreateOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | using Newtonsoft.Json; 4 | 5 | public class SourceWechatCreateOptions : INestedOptions 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/Settings/SettingsGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class SettingsGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/Events/EventGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class EventGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandateMultiUse.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandateMultiUse : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Orders/OrderListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class OrderListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CountrySpecs/CountrySpecGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CountrySpecGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CountrySpecs/CountrySpecListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CountrySpecListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Customers/CustomerSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/InvoiceItems/InvoiceItemGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceItemGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentLinks/PaymentLinkGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentLinkGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ShippingRates/ShippingRateGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ShippingRateGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Subscriptions/SubscriptionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Readers/ReaderGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class ReaderGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountPersons/AccountPersonGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountPersonGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/BankAccounts/BankAccountDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class BankAccountDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Alerts/AlertActivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class AlertActivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Alerts/AlertArchiveOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class AlertArchiveOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Checkout/Sessions/SessionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Checkout 3 | { 4 | public class SessionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Orders/OrderCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class OrderCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Products/ProductGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class ProductGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Products/ProductListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class ProductListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Suppliers/SupplierGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class SupplierGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerTaxIds/CustomerTaxIdGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerTaxIdGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerTaxIds/CustomerTaxIdListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerTaxIdListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/InvoiceItems/InvoiceItemDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceItemDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Disputes/DisputeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class DisputeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentRecords/PaymentRecordGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PromotionCodes/PromotionCodeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PromotionCodeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/QuoteLineItems/QuoteLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuoteLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Radar/ValueLists/ValueListGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Radar 3 | { 4 | public class ValueListGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/Calculations/CalculationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class CalculationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/Transactions/TransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class TransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/balance_transaction.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "txn_123", 3 | "object": "balance_transaction", 4 | "source": { 5 | "id": "random", 6 | "object": "unknown_object" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodPix.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPix : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountPersons/AccountPersonDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountPersonDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ApplePayDomains/ApplePayDomainGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ApplePayDomainGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ApplicationFees/ApplicationFeeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ApplicationFeeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/BalanceSettings/BalanceSettingsGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class BalanceSettingsGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Alerts/AlertDeactivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class AlertDeactivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Meters/MeterDeactivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class MeterDeactivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/Meters/MeterReactivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class MeterReactivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Checkout/Sessions/SessionExpireOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Checkout 3 | { 4 | public class SessionExpireOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Climate/Suppliers/SupplierListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Climate 3 | { 4 | public class SupplierListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerTaxIds/CustomerTaxIdDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerTaxIdDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Customers/CustomerDeleteDiscountOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerDeleteDiscountOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/EphemeralKeys/EphemeralKeyDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class EphemeralKeyDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Forwarding/Requests/RequestGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Forwarding 3 | { 4 | public class RequestGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/InvoicePayments/InvoicePaymentGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoicePaymentGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Cardholders/CardholderGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class CardholderGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodAlmaOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAlmaOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodBlikOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBlikOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodDetachOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodDetachOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodLinkOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodLinkOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodMbWayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMbWayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodOxxoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodOxxoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPaycoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPaycoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPixOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPixOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodSwishOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSwishOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodTwintOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodTwintOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodZipOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodZipOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ProductFeatures/ProductFeatureGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductFeatureGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ProductFeatures/ProductFeatureListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductFeatureListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Radar/ValueLists/ValueListDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Radar 3 | { 4 | public class ValueListDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Subscriptions/SubscriptionSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/Registrations/RegistrationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class RegistrationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Locations/LocationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class LocationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Locations/LocationListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class LocationListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Readers/ReaderDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class ReaderDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/WebhookEndpoints/WebhookEndpointGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class WebhookEndpointGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodAlma.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAlma : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodBlik.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBlik : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodMbWay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMbWay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodOxxo.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodOxxo : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodPayco.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPayco : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodSwish.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSwish : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ApplePayDomains/ApplePayDomainDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ApplePayDomainDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/CreditGrants/CreditGrantGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class CreditGrantGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ConfirmationTokens/ConfirmationTokenGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Entitlements/Features/FeatureGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Entitlements 3 | { 4 | public class FeatureGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoiceMarkUncollectibleOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceMarkUncollectibleOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Transactions/TransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class TransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentSearchOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentSearchOptions : SearchOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodAffirmOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAffirmOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodAlipayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAlipayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodBillieOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBillieOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodCashappOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCashappOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodCryptoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCryptoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodGiropayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodGiropayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodGrabpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodGrabpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodKrCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodKrCardOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPaynowOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPaynowOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPaypalOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPaypalOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ProductFeatures/ProductFeatureDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ProductFeatureDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Radar/ValueListItems/ValueListItemGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Radar 3 | { 4 | public class ValueListItemGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Reporting/ReportRuns/ReportRunGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Reporting 3 | { 4 | public class ReportRunGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Reporting/ReportTypes/ReportTypeGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Reporting 3 | { 4 | public class ReportTypeGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SubscriptionItems/SubscriptionItemGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionItemGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Locations/LocationDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class LocationDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Refunds/RefundExpireOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class RefundExpireOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/TestClocks/TestClockGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class TestClockGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TransferReversals/TransferReversalGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TransferReversalGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TransferReversals/TransferReversalListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class TransferReversalListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/Transactions/TransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class TransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/WebhookEndpoints/WebhookEndpointDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class WebhookEndpointDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/WebhookEndpoints/WebhookEndpointListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class WebhookEndpointListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodAffirm.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAffirm : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodAlipay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAlipay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodBillie.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBillie : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCrypto.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCrypto : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodGiropay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodGiropay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodGrabpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodGrabpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodKonbini.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodKonbini : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodPaynow.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPaynow : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountCapabilities/AccountCapabilityGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountCapabilityGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountCapabilities/AccountCapabilityListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountCapabilityListOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountLoginLinks/AccountLoginLinkCreateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountLoginLinkCreateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/BalanceTransactions/BalanceTransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class BalanceTransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/CreditGrants/CreditGrantExpireOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class CreditGrantExpireOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/Authorizations/AuthorizationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class AuthorizationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodAmazonPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAmazonPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodBancontactOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBancontactOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodKakaoPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodKakaoPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodMobilepayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMobilepayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodMultibancoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMultibancoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodPromptpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPromptpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodRevolutPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodRevolutPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodSamsungPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSamsungPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodSatispayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSatispayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodWechatPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodWechatPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Reporting/ReportTypes/ReportTypeListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Reporting 3 | { 4 | public class ReportTypeListOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SourceTransactions/SourceTransactionListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SourceTransactionListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Readers/ReaderCancelActionOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class ReaderCancelActionOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/TestClocks/TestClockListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class TestClockListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/AccountTokens/AccountTokenGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class AccountTokenGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/Accounts/Persons/PersonGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core.Accounts 3 | { 4 | public class PersonGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodKakaoPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodKakaoPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodSatispay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSatispay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ApplicationFeeRefunds/ApplicationFeeRefundGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ApplicationFeeRefundGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/CreditGrants/CreditGrantVoidGrantOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class CreditGrantVoidGrantOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerCashBalances/CustomerCashBalanceGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerCashBalanceGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/PhysicalBundles/PhysicalBundleGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class PhysicalBundleGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentAttemptRecords/PaymentAttemptRecordGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentLinkLineItems/PaymentLinkLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentLinkLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethodDomains/PaymentMethodDomainGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodDomainGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Radar/ValueListItems/ValueListItemDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Radar 3 | { 4 | public class ValueListItemDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SubscriptionSchedules/SubscriptionScheduleGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionScheduleGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Subscriptions/SubscriptionDeleteDiscountOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionDeleteDiscountOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Configurations/ConfigurationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class ConfigurationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/TestClocks/TestClockDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class TestClockDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/CreditReversals/CreditReversalGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class CreditReversalGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/DebitReversals/DebitReversalGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class DebitReversalGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/ReceivedCredits/ReceivedCreditGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class ReceivedCreditGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/ReceivedDebits/ReceivedDebitGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class ReceivedDebitGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/Accounts/Persons/PersonDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core.Accounts 3 | { 4 | public class PersonDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/Accounts/Persons/PersonListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core.Accounts 3 | { 4 | public class PersonListOptions : V2.ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodBancontact.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodBancontact : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodMobilepay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMobilepay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodMultibanco.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodMultibanco : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodPromptpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodPromptpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodRevolutPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodRevolutPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodSamsungPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodSamsungPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodWechatPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodWechatPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountExternalAccounts/AccountExternalAccountGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountExternalAccountGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/ApplicationFeeRefunds/ApplicationFeeRefundListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ApplicationFeeRefundListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Checkout/SessionLineItems/SessionLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Checkout 3 | { 4 | public class SessionLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerPaymentMethods/CustomerPaymentMethodGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerPaymentMethodGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerPaymentSources/CustomerPaymentSourceGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerPaymentSourceGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/FinancialConnections/Accounts/AccountGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.FinancialConnections 3 | { 4 | public class AccountGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/FinancialConnections/Sessions/SessionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.FinancialConnections 3 | { 4 | public class SessionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodCustomerBalanceOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCustomerBalanceOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodInteracPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodInteracPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Radar/EarlyFraudWarnings/EarlyFraudWarningGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Radar 3 | { 4 | public class EarlyFraudWarningGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Sigma/ScheduledQueryRuns/ScheduledQueryRunGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Sigma 3 | { 4 | public class ScheduledQueryRunGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Sigma/ScheduledQueryRuns/ScheduledQueryRunListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Sigma 3 | { 4 | public class ScheduledQueryRunListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Terminal/Configurations/ConfigurationDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Terminal 3 | { 4 | public class ConfigurationDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Cards/CardFailCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class CardFailCardOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Cards/CardReturnCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class CardReturnCardOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Cards/CardShipCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class CardShipCardOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Cards/CardSubmitCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class CardSubmitCardOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/FinancialAccounts/FinancialAccountGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class FinancialAccountGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/InboundTransfers/InboundTransferGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class InboundTransferGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/OutboundPayments/OutboundPaymentGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class OutboundPaymentGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/OutboundTransfers/OutboundTransferGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class OutboundTransferGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/EventDestinations/EventDestinationPingOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class EventDestinationPingOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "coveralls.net": { 6 | "version": "4.0.1", 7 | "commands": [ 8 | "csmacnz.Coveralls" 9 | ] 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsEps.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsEps : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsPix.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsPix : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/BillingPortal/Configurations/ConfigurationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.BillingPortal 3 | { 4 | public class ConfigurationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerPaymentSources/CustomerPaymentSourceDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerPaymentSourceDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethodDomains/PaymentMethodDomainValidateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodDomainValidateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethods/PaymentMethodAfterpayClearpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAfterpayClearpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPixOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPixOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataZipOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataZipOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/CalculationLineItems/CalculationLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class CalculationLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Tax/TransactionLineItems/TransactionLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class TransactionLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Cards/CardDeliverCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class CardDeliverCardOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/InboundTransfers/InboundTransferCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class InboundTransferCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/OutboundPayments/OutboundPaymentCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class OutboundPaymentCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/TransactionEntries/TransactionEntryGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class TransactionEntryGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/Accounts/PersonTokens/PersonTokenGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core.Accounts 3 | { 4 | public class PersonTokenGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/EventDestinations/EventDestinationDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class EventDestinationDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/EventDestinations/EventDestinationEnableOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class EventDestinationEnableOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAlma.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAlma : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountExternalAccounts/AccountExternalAccountDeleteOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountExternalAccountDeleteOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/FinancialConnections/Transactions/TransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.FinancialConnections 3 | { 4 | public class TransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Identity/VerificationReports/VerificationReportGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationReportGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Identity/VerificationSessions/VerificationSessionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationSessionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPixOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPixOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataZipOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataZipOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataAffirmOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataAffirmOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataAlipayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataAlipayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataAlmaOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataAlmaOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataBillieOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataBillieOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataBlikOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataBlikOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataCryptoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataCryptoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataKrCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataKrCardOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataLinkOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataLinkOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataMbWayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataMbWayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataOxxoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataOxxoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPaycoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPaycoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPaynowOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPaynowOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPaypalOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPaypalOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataSwishOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataSwishOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataTwintOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataTwintOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/OutboundTransfers/OutboundTransferCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class OutboundTransferCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Core/EventDestinations/EventDestinationDisableOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Core 3 | { 4 | public class EventDestinationDisableOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Constants/SourceUsage.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public static class SourceUsage 4 | { 5 | public const string Reusable = "reusable"; 6 | 7 | public const string SingleUse = "single_use"; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCardWalletLink.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCardWalletLink : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCustomerBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCustomerBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAffirm.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAffirm : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAlipay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAlipay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsKlarna.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsKlarna : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsPaynow.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsPaynow : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsSofort.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsSofort : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Tax/Settings/SettingsStatusDetailsActive.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Tax 3 | { 4 | public class SettingsStatusDetailsActive : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerBalanceTransactions/CustomerBalanceTransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerBalanceTransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Entitlements/ActiveEntitlements/ActiveEntitlementGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Entitlements 3 | { 4 | public class ActiveEntitlementGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/FinancialConnections/Accounts/AccountDisconnectOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.FinancialConnections 3 | { 4 | public class AccountDisconnectOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Identity/VerificationSessions/VerificationSessionCancelOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationSessionCancelOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Identity/VerificationSessions/VerificationSessionRedactOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationSessionRedactOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/InvoiceRenderingTemplates/InvoiceRenderingTemplateArchiveOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceRenderingTemplateArchiveOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Issuing/PersonalizationDesigns/PersonalizationDesignGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Issuing 3 | { 4 | public class PersonalizationDesignGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataAlmaOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataAlmaOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataBlikOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataBlikOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataLinkOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataLinkOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataMbWayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataMbWayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataOxxoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataOxxoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPaycoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPaycoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataSwishOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataSwishOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataTwintOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataTwintOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentMethodConfigurations/PaymentMethodConfigurationGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodConfigurationGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataCashappOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataCashappOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataGiropayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataGiropayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataGrabpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataGrabpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataKakaoPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataKakaoPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataSatispayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataSatispayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/V2/Billing/MeterEventSessions/MeterEventSessionCreateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.V2.Billing 3 | { 4 | public class MeterEventSessionCreateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/pageable_models/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": "pm_127", 5 | "object": "pageablemodel" 6 | } 7 | ], 8 | "has_more": false, 9 | "object": "list", 10 | "url": "/v1/pageable_models" 11 | } 12 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsMbWay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsMbWay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsWechat.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsWechat : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandateCustomerAcceptanceOffline.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandateCustomerAcceptanceOffline : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsCard.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsCard : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsLink.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsLink : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodAfterpayClearpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodAfterpayClearpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsCashapp.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsCashapp : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsGiropay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsGiropay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsGrabpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsGrabpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsRevolut.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsRevolut : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/InvoiceRenderingTemplates/InvoiceRenderingTemplateUnarchiveOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoiceRenderingTemplateUnarchiveOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataAffirmOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataAffirmOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataAlipayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataAlipayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataBillieOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataBillieOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataCashappOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataCashappOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataCryptoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataCryptoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataGiropayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataGiropayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataGrabpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataGrabpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataKakaoPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataKakaoPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataKrCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataKrCardOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPaynowOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPaynowOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPaypalOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPaypalOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataSatispayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataSatispayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataAmazonPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataAmazonPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataBancontactOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataBancontactOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataMobilepayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataMobilepayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataMultibancoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataMultibancoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataPromptpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataPromptpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataRevolutPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataRevolutPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataSamsungPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataSamsungPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataWechatPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataWechatPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/Authorizations/AuthorizationExpireOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class AuthorizationExpireOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/pageable_models/0b.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": "pm_122", 5 | "object": "pageablemodel" 6 | } 7 | ], 8 | "has_more": false, 9 | "object": "list", 10 | "url": "/v1/pageable_models" 11 | } 12 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsKlarna.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsKlarna : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsKrCard.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsKrCard : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCardWalletApplePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCardWalletApplePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsWechatPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsWechatPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Billing/CreditBalanceTransactions/CreditBalanceTransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Billing 3 | { 4 | public class CreditBalanceTransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerCashBalanceTransactions/CustomerCashBalanceTransactionGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerCashBalanceTransactionGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataAmazonPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataAmazonPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataBancontactOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataBancontactOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataMobilepayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataMobilepayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataMultibancoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataMultibancoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataPromptpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataPromptpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataRevolutPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataRevolutPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataSamsungPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataSamsungPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataWechatPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataWechatPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/QuoteComputedUpfrontLineItems/QuoteComputedUpfrontLineItemsListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class QuoteComputedUpfrontLineItemsListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodOptionsAmazonPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodOptionsAmazonPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/OutboundPayments/OutboundPaymentFailOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class OutboundPaymentFailOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/OutboundPayments/OutboundPaymentPostOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class OutboundPaymentPostOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Treasury/FinancialAccountFeatures/FinancialAccountFeaturesGetOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Treasury 3 | { 4 | public class FinancialAccountFeaturesGetOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsCashapp.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsCashapp : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsKakaoPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsKakaoPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsNaverPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsNaverPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCardWalletSamsungPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCardWalletSamsungPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountSessions/AccountSessionComponentsDocumentsFeaturesOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsDocumentsFeaturesOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Checkout/Sessions/SessionPaymentMethodOptionsPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Checkout 3 | { 4 | public class SessionPaymentMethodOptionsPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CustomerCashBalanceTransactions/CustomerCashBalanceTransactionListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class CustomerCashBalanceTransactionListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodOptionsPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodOptionsPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataAfterpayClearpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataAfterpayClearpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataCustomerBalanceOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataCustomerBalanceOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataInteracPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodDataInteracPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodOptionsCardPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodOptionsCardPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/InboundTransfers/InboundTransferSucceedOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class InboundTransferSucceedOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/OutboundTransfers/OutboundTransferFailOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class OutboundTransferFailOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/OutboundTransfers/OutboundTransferPostOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class OutboundTransferPostOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Constants/BankAccountHolderType.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public static class BankAccountHolderType 4 | { 5 | public const string Individual = "individual"; 6 | 7 | public const string Company = "company"; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsRevolutPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsRevolutPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutDetailsFeaturesOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsPayoutDetailsFeaturesOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutsListFeaturesOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsPayoutsListFeaturesOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountSessions/AccountSessionComponentsTaxSettingsFeaturesOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsTaxSettingsFeaturesOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataCustomerBalanceOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataCustomerBalanceOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataInteracPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataInteracPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Terminal/Readers/ReaderTimeoutInputCollectionOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Terminal 3 | { 4 | public class ReaderTimeoutInputCollectionOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Constants/ApiVersion.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | internal class ApiVersion 5 | { 6 | public const string Current = "2025-12-15.clover"; 7 | public const string CurrentMajor = "clover"; 8 | } 9 | } -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsStripeAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsStripeAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAuBankTransfer.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAuBankTransfer : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsNzBankTransfer.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsNzBankTransfer : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsLink.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsLink : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsPayto.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsPayto : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoicePaymentSettingsPaymentMethodOptionsKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoicePaymentSettingsPaymentMethodOptionsKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Invoices/InvoicePaymentSettingsPaymentMethodOptionsSepaDebitOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoicePaymentSettingsPaymentMethodOptionsSepaDebitOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntentAmountDetailsLineItems/PaymentIntentAmountDetailsLineItemListOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentAmountDetailsLineItemListOptions : ListOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataAfterpayClearpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodDataAfterpayClearpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodOptionsInteracPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodOptionsInteracPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/SetupIntents/SetupIntentMandateDataCustomerAcceptanceOfflineOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentMandateDataCustomerAcceptanceOfflineOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCardWalletLink.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCardWalletLink : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Mandates/MandatePaymentMethodDetailsNzBankAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class MandatePaymentMethodDetailsNzBankAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsMbWay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsMbWay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsAfterpayClearpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsAfterpayClearpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsBoleto.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsBoleto : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsKlarna.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsKlarna : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsKrCard.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsKrCard : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsPaypal.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsPaypal : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/AccountSessions/AccountSessionComponentsTaxRegistrationsFeaturesOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsTaxRegistrationsFeaturesOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/PaymentIntents/PaymentIntentMandateDataCustomerAcceptanceOfflineOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentMandateDataCustomerAcceptanceOfflineOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCustomerBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCustomerBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsWechat.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsWechat : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsCashapp.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsCashapp : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsKakaoPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsKakaoPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupIntents/SetupIntentPaymentMethodOptionsAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodOptionsAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataAlmaOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataAlmaOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataBlikOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataBlikOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataLinkOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataLinkOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataMbWayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataMbWayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataOxxoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataOxxoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPaycoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPaycoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPixOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPixOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataSwishOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataSwishOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataTwintOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataTwintOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataZipOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataZipOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/PersonalizationDesigns/PersonalizationDesignActivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class PersonalizationDesignActivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/_interfaces/INestedOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | public interface INestedOptions 4 | { 5 | // this interface just needs to be implemented by any class that is 6 | // a nested object under any of the primary service options 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsDocumentsFeatures.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsDocumentsFeatures : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCardWalletApplePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCardWalletApplePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewPix.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewPix : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Identity/VerificationReports/VerificationReportOptionsIdNumber.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationReportOptionsIdNumber : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Refunds/RefundDestinationDetailsCustomerCashBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class RefundDestinationDetailsCustomerCashBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsAcssDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsAcssDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsBacsDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsBacsDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsRevolutPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsRevolutPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsSepaDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsSepaDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupIntents/SetupIntentPaymentMethodOptionsCardPresent.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupIntentPaymentMethodOptionsCardPresent : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Subscriptions/SubscriptionPaymentSettingsPaymentMethodOptionsKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionPaymentSettingsPaymentMethodOptionsKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/Subscriptions/SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebitOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebitOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataAffirmOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataAffirmOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataAlipayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataAlipayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataBillieOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataBillieOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataCashappOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataCashappOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataCryptoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataCryptoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataGiropayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataGiropayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataGrabpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataGrabpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataKonbiniOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataKonbiniOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataKrCardOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataKrCardOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPaynowOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPaynowOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPaypalOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPaypalOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Issuing/PersonalizationDesigns/PersonalizationDesignDeactivateOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Issuing 3 | { 4 | public class PersonalizationDesignDeactivateOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutsListFeatures.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsPayoutsListFeatures : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsTaxSettingsFeatures.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsTaxSettingsFeatures : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewAlma.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewAlma : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewBlik.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewBlik : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewMbWay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewMbWay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewOxxo.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewOxxo : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewPayco.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewPayco : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewSwish.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewSwish : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Identity/VerificationSessions/VerificationSessionOptionsIdNumber.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.Identity 3 | { 4 | public class VerificationSessionOptionsIdNumber : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentIntents/PaymentIntentPaymentMethodOptionsPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodOptionsPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentMethods/PaymentMethodCardWalletAmexExpressCheckout.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentMethodCardWalletAmexExpressCheckout : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsAuBecsDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsAuBecsDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataAmazonPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataAmazonPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataBancontactOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataBancontactOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataKakaoPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataKakaoPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataMobilepayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataMobilepayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataMultibancoOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataMultibancoOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPayByBankOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPayByBankOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataPromptpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataPromptpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataRevolutPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataRevolutPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataSamsungPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataSamsungPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataSatispayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataSatispayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataWechatPayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataWechatPayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/Treasury/InboundTransfers/InboundTransferReturnInboundTransferOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers.Treasury 3 | { 4 | public class InboundTransferReturnInboundTransferOptions : BaseOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCardWalletSamsungPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCardWalletSamsungPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewAffirm.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewAffirm : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewAlipay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewAlipay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewBillie.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewBillie : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCrypto.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCrypto : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewPaynow.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewPaynow : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsNzBankAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsNzBankAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsUsBankAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsUsBankAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Wholesome/README.md: -------------------------------------------------------------------------------- 1 | ## Wholesome tests 2 | 3 | Unlike regular tests that check the behavior of the library, wholesome tests 4 | contain checks on the state of the Stripe.net codebase and are there to 5 | prevent programming errors and enforce consistency. They rely heavily on 6 | reflection. 7 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutDetailsFeatures.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsPayoutDetailsFeatures : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewGiropay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewGiropay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewGrabpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewGrabpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewKakaoPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewKakaoPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewKonbini.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewKonbini : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewSatispay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewSatispay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsZip.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsZip : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsStripeAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsStripeAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataCustomerBalanceOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataCustomerBalanceOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataInteracPresentOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataInteracPresentOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsTaxRegistrationsFeatures.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class AccountSessionComponentsTaxRegistrationsFeatures : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewAmazonPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewAmazonPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewBancontact.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewBancontact : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewMobilepay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewMobilepay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewMultibanco.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewMultibanco : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewPromptpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewPromptpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewRevolutPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewRevolutPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewSamsungPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewSamsungPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewWechatPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewWechatPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Invoices/InvoicePaymentSettingsPaymentMethodOptionsKonbini.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoicePaymentSettingsPaymentMethodOptionsKonbini : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsMbWay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsMbWay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsTwint.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsTwint : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsWechat.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsWechat : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentIntents/PaymentIntentPaymentMethodOptionsInteracPresent.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentIntentPaymentMethodOptionsInteracPresent : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsCustomerBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsCustomerBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/CreditNotes/CreditNoteVoidOptions.cs: -------------------------------------------------------------------------------- 1 | namespace Stripe 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using Stripe.Infrastructure; 7 | 8 | public class CreditNoteVoidOptions : BaseOptions 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Stripe.net/Services/TestHelpers/ConfirmationTokens/ConfirmationTokenPaymentMethodDataAfterpayClearpayOptions.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe.TestHelpers 3 | { 4 | public class ConfirmationTokenPaymentMethodDataAfterpayClearpayOptions : INestedOptions 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Invoices/InvoicePaymentSettingsPaymentMethodOptionsSepaDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class InvoicePaymentSettingsPaymentMethodOptionsSepaDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsCardWalletApplePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsCardWalletApplePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsPayByBank.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsPayByBank : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/SetupAttempts/SetupAttemptPaymentMethodDetailsCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SetupAttemptPaymentMethodDetailsCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCardWalletAmexExpressCheckout.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ChargePaymentMethodDetailsCardWalletAmexExpressCheckout : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCardWalletLink.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCardWalletLink : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCustomerBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCustomerBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentRecords/PaymentRecordPaymentMethodDetailsCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentRecordPaymentMethodDetailsCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Infrastructure/TestData/TestObjectDateTime.cs: -------------------------------------------------------------------------------- 1 | namespace StripeTests.Infrastructure.TestData 2 | { 3 | using System; 4 | using Newtonsoft.Json; 5 | using Stripe.Infrastructure; 6 | 7 | public class TestObjectDateTime 8 | { 9 | public DateTime? Date { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/StripeTests/Infrastructure/TestData/TestService.cs: -------------------------------------------------------------------------------- 1 | namespace StripeTests.Infrastructure.TestData 2 | { 3 | using System; 4 | using Stripe; 5 | 6 | public class TestService : Service 7 | { 8 | public TestService() 9 | : base() 10 | { 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewAfterpayClearpay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewAfterpayClearpay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Subscriptions/SubscriptionPaymentSettingsPaymentMethodOptionsKonbini.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionPaymentSettingsPaymentMethodOptionsKonbini : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/billing_portal/session.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "bps_123", 3 | "object": "billing_portal.session", 4 | "created": 1586838826, 5 | "customer": "cus_ABC", 6 | "livemode": true, 7 | "return_url": "https://example.com/return", 8 | "url": "https://billing.stripe.com/session/secret" 9 | } 10 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCardWalletApplePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCardWalletApplePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsStripeAccount.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsStripeAccount : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/Subscriptions/SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebit.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class SubscriptionPaymentSettingsPaymentMethodOptionsSepaDebit : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewCardWalletSamsungPay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class ConfirmationTokenPaymentMethodPreviewCardWalletSamsungPay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsCustomerBalance.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsCustomerBalance : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/pageable_models/0.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": "pm_123", 5 | "object": "pageablemodel" 6 | }, 7 | { 8 | "id": "pm_124", 9 | "object": "pageablemodel" 10 | } 11 | ], 12 | "has_more": true, 13 | "object": "list", 14 | "url": "/v1/pageable_models" 15 | } 16 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/pageable_models/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": "pm_125", 5 | "object": "pageablemodel" 6 | }, 7 | { 8 | "id": "pm_126", 9 | "object": "pageablemodel" 10 | } 11 | ], 12 | "has_more": true, 13 | "object": "list", 14 | "url": "/v1/pageable_models" 15 | } 16 | -------------------------------------------------------------------------------- /src/Stripe.net/Entities/PaymentAttemptRecords/PaymentAttemptRecordPaymentMethodDetailsCardWalletGooglePay.cs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec 2 | namespace Stripe 3 | { 4 | public class PaymentAttemptRecordPaymentMethodDetailsCardWalletGooglePay : StripeEntity 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/ephemeral_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "ephkey_123", 3 | "object": "ephemeral_key", 4 | "associated_objects": [ 5 | { 6 | "type": "customer", 7 | "id": "cus_123" 8 | } 9 | ], 10 | "created": 100, 11 | "expires": 200, 12 | "livemode": false, 13 | "secret": "ek_test_hunter2" 14 | } 15 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/api_fixtures/events/event_pre_2017-05-25.json: -------------------------------------------------------------------------------- 1 | { 2 | "api_version": "2017-04-06", 3 | "created": 1538742675, 4 | "data": { 5 | "object": null, 6 | }, 7 | "id": "evt_123", 8 | "livemode": false, 9 | "object": "event", 10 | "pending_webhooks": 0, 11 | "request": "req_123", 12 | "type": "ping" 13 | } 14 | -------------------------------------------------------------------------------- /src/StripeTests/Resources/oauth_fixtures/token_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "access_token": "sk_test_access_token", 3 | "livemode": false, 4 | "refresh_token": "rt_refresh_token", 5 | "token_type": "bearer", 6 | "stripe_publishable_key": "pk_test_stripe_publishable_key", 7 | "stripe_user_id": "acct_test_token", 8 | "scope": "read_only" 9 | } 10 | --------------------------------------------------------------------------------