├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rustfmt.toml ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── bench └── binary_size │ ├── Cargo.toml │ ├── benchmarks.toml │ ├── bloat.txt │ ├── src │ └── main.rs │ └── time.txt ├── examples ├── async_create_charge.rs ├── create_charge.rs ├── create_customer.rs ├── create_customer_with_source.rs └── list_customers.rs ├── openapi ├── .gitignore ├── Cargo.toml ├── add ├── build ├── cache │ └── .keep ├── commit ├── out │ └── .keep ├── spec3.json └── src │ ├── main.rs │ ├── mappings.rs │ └── metadata.rs ├── preinstall.sh ├── src ├── client │ ├── async.rs │ └── blocking.rs ├── error.rs ├── ids.rs ├── lib.rs ├── params.rs ├── resources.rs └── resources │ ├── account.rs │ ├── alipay_account.rs │ ├── application.rs │ ├── application_fee.rs │ ├── balance.rs │ ├── balance_transaction.rs │ ├── balance_transaction_ext.rs │ ├── bank_account.rs │ ├── bank_account_ext.rs │ ├── card.rs │ ├── charge.rs │ ├── charge_ext.rs │ ├── checkout_session.rs │ ├── connect_collection_transfer.rs │ ├── coupon.rs │ ├── currency.rs │ ├── customer.rs │ ├── customer_ext.rs │ ├── discount.rs │ ├── dispute.rs │ ├── event.rs │ ├── fee_refund.rs │ ├── file.rs │ ├── file_link.rs │ ├── invoice.rs │ ├── invoice_ext.rs │ ├── invoiceitem.rs │ ├── issuing_authorization.rs │ ├── issuing_authorization_ext.rs │ ├── issuing_card.rs │ ├── issuing_card_ext.rs │ ├── issuing_cardholder.rs │ ├── issuing_dispute.rs │ ├── issuing_dispute_ext.rs │ ├── issuing_merchant_data.rs │ ├── issuing_transaction.rs │ ├── issuing_transaction_ext.rs │ ├── item.rs │ ├── line_item.rs │ ├── line_item_ext.rs │ ├── mandate.rs │ ├── order.rs │ ├── order_ext.rs │ ├── order_item.rs │ ├── order_return.rs │ ├── payment_intent.rs │ ├── payment_method.rs │ ├── payment_method_ext.rs │ ├── payment_source.rs │ ├── payout.rs │ ├── payout_ext.rs │ ├── person.rs │ ├── placeholders.rs │ ├── plan.rs │ ├── platform_tax_fee.rs │ ├── price.rs │ ├── product.rs │ ├── recipient.rs │ ├── refund.rs │ ├── reserve_transaction.rs │ ├── review.rs │ ├── review_ext.rs │ ├── scheduled_query_run.rs │ ├── setup_intent.rs │ ├── sku.rs │ ├── source.rs │ ├── source_ext.rs │ ├── subscription.rs │ ├── subscription_ext.rs │ ├── subscription_item.rs │ ├── subscription_item_ext.rs │ ├── subscription_schedule.rs │ ├── tax_deducted_at_source.rs │ ├── tax_id.rs │ ├── tax_rate.rs │ ├── token.rs │ ├── token_ext.rs │ ├── topup.rs │ ├── transfer.rs │ ├── transfer_reversal.rs │ ├── types.rs │ ├── webhook_endpoint.rs │ └── webhook_endpoint_ext.rs └── tests ├── account.rs ├── charge.rs ├── customer.rs ├── encoding.rs ├── mock └── mod.rs └── subscription.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_small_heuristics = "Max" -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/README.md -------------------------------------------------------------------------------- /bench/binary_size/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/bench/binary_size/Cargo.toml -------------------------------------------------------------------------------- /bench/binary_size/benchmarks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/bench/binary_size/benchmarks.toml -------------------------------------------------------------------------------- /bench/binary_size/bloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/bench/binary_size/bloat.txt -------------------------------------------------------------------------------- /bench/binary_size/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/bench/binary_size/src/main.rs -------------------------------------------------------------------------------- /bench/binary_size/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/bench/binary_size/time.txt -------------------------------------------------------------------------------- /examples/async_create_charge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/examples/async_create_charge.rs -------------------------------------------------------------------------------- /examples/create_charge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/examples/create_charge.rs -------------------------------------------------------------------------------- /examples/create_customer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/examples/create_customer.rs -------------------------------------------------------------------------------- /examples/create_customer_with_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/examples/create_customer_with_source.rs -------------------------------------------------------------------------------- /examples/list_customers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/examples/list_customers.rs -------------------------------------------------------------------------------- /openapi/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | -------------------------------------------------------------------------------- /openapi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/Cargo.toml -------------------------------------------------------------------------------- /openapi/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/add -------------------------------------------------------------------------------- /openapi/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/build -------------------------------------------------------------------------------- /openapi/cache/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openapi/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/commit -------------------------------------------------------------------------------- /openapi/out/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openapi/spec3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/spec3.json -------------------------------------------------------------------------------- /openapi/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/src/main.rs -------------------------------------------------------------------------------- /openapi/src/mappings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/src/mappings.rs -------------------------------------------------------------------------------- /openapi/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/openapi/src/metadata.rs -------------------------------------------------------------------------------- /preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/preinstall.sh -------------------------------------------------------------------------------- /src/client/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/client/async.rs -------------------------------------------------------------------------------- /src/client/blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/client/blocking.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/ids.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/params.rs -------------------------------------------------------------------------------- /src/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources.rs -------------------------------------------------------------------------------- /src/resources/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/account.rs -------------------------------------------------------------------------------- /src/resources/alipay_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/alipay_account.rs -------------------------------------------------------------------------------- /src/resources/application.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/application.rs -------------------------------------------------------------------------------- /src/resources/application_fee.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/application_fee.rs -------------------------------------------------------------------------------- /src/resources/balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/balance.rs -------------------------------------------------------------------------------- /src/resources/balance_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/balance_transaction.rs -------------------------------------------------------------------------------- /src/resources/balance_transaction_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/balance_transaction_ext.rs -------------------------------------------------------------------------------- /src/resources/bank_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/bank_account.rs -------------------------------------------------------------------------------- /src/resources/bank_account_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/bank_account_ext.rs -------------------------------------------------------------------------------- /src/resources/card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/card.rs -------------------------------------------------------------------------------- /src/resources/charge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/charge.rs -------------------------------------------------------------------------------- /src/resources/charge_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/charge_ext.rs -------------------------------------------------------------------------------- /src/resources/checkout_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/checkout_session.rs -------------------------------------------------------------------------------- /src/resources/connect_collection_transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/connect_collection_transfer.rs -------------------------------------------------------------------------------- /src/resources/coupon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/coupon.rs -------------------------------------------------------------------------------- /src/resources/currency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/currency.rs -------------------------------------------------------------------------------- /src/resources/customer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/customer.rs -------------------------------------------------------------------------------- /src/resources/customer_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/customer_ext.rs -------------------------------------------------------------------------------- /src/resources/discount.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/discount.rs -------------------------------------------------------------------------------- /src/resources/dispute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/dispute.rs -------------------------------------------------------------------------------- /src/resources/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/event.rs -------------------------------------------------------------------------------- /src/resources/fee_refund.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/fee_refund.rs -------------------------------------------------------------------------------- /src/resources/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/file.rs -------------------------------------------------------------------------------- /src/resources/file_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/file_link.rs -------------------------------------------------------------------------------- /src/resources/invoice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/invoice.rs -------------------------------------------------------------------------------- /src/resources/invoice_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/invoice_ext.rs -------------------------------------------------------------------------------- /src/resources/invoiceitem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/invoiceitem.rs -------------------------------------------------------------------------------- /src/resources/issuing_authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_authorization.rs -------------------------------------------------------------------------------- /src/resources/issuing_authorization_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_authorization_ext.rs -------------------------------------------------------------------------------- /src/resources/issuing_card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_card.rs -------------------------------------------------------------------------------- /src/resources/issuing_card_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_card_ext.rs -------------------------------------------------------------------------------- /src/resources/issuing_cardholder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_cardholder.rs -------------------------------------------------------------------------------- /src/resources/issuing_dispute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_dispute.rs -------------------------------------------------------------------------------- /src/resources/issuing_dispute_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_dispute_ext.rs -------------------------------------------------------------------------------- /src/resources/issuing_merchant_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_merchant_data.rs -------------------------------------------------------------------------------- /src/resources/issuing_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_transaction.rs -------------------------------------------------------------------------------- /src/resources/issuing_transaction_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/issuing_transaction_ext.rs -------------------------------------------------------------------------------- /src/resources/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/item.rs -------------------------------------------------------------------------------- /src/resources/line_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/line_item.rs -------------------------------------------------------------------------------- /src/resources/line_item_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/line_item_ext.rs -------------------------------------------------------------------------------- /src/resources/mandate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/mandate.rs -------------------------------------------------------------------------------- /src/resources/order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/order.rs -------------------------------------------------------------------------------- /src/resources/order_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/order_ext.rs -------------------------------------------------------------------------------- /src/resources/order_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/order_item.rs -------------------------------------------------------------------------------- /src/resources/order_return.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/order_return.rs -------------------------------------------------------------------------------- /src/resources/payment_intent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payment_intent.rs -------------------------------------------------------------------------------- /src/resources/payment_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payment_method.rs -------------------------------------------------------------------------------- /src/resources/payment_method_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payment_method_ext.rs -------------------------------------------------------------------------------- /src/resources/payment_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payment_source.rs -------------------------------------------------------------------------------- /src/resources/payout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payout.rs -------------------------------------------------------------------------------- /src/resources/payout_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/payout_ext.rs -------------------------------------------------------------------------------- /src/resources/person.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/person.rs -------------------------------------------------------------------------------- /src/resources/placeholders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/placeholders.rs -------------------------------------------------------------------------------- /src/resources/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/plan.rs -------------------------------------------------------------------------------- /src/resources/platform_tax_fee.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/platform_tax_fee.rs -------------------------------------------------------------------------------- /src/resources/price.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/price.rs -------------------------------------------------------------------------------- /src/resources/product.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/product.rs -------------------------------------------------------------------------------- /src/resources/recipient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/recipient.rs -------------------------------------------------------------------------------- /src/resources/refund.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/refund.rs -------------------------------------------------------------------------------- /src/resources/reserve_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/reserve_transaction.rs -------------------------------------------------------------------------------- /src/resources/review.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/review.rs -------------------------------------------------------------------------------- /src/resources/review_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/review_ext.rs -------------------------------------------------------------------------------- /src/resources/scheduled_query_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/scheduled_query_run.rs -------------------------------------------------------------------------------- /src/resources/setup_intent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/setup_intent.rs -------------------------------------------------------------------------------- /src/resources/sku.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/sku.rs -------------------------------------------------------------------------------- /src/resources/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/source.rs -------------------------------------------------------------------------------- /src/resources/source_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/source_ext.rs -------------------------------------------------------------------------------- /src/resources/subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/subscription.rs -------------------------------------------------------------------------------- /src/resources/subscription_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/subscription_ext.rs -------------------------------------------------------------------------------- /src/resources/subscription_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/subscription_item.rs -------------------------------------------------------------------------------- /src/resources/subscription_item_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/subscription_item_ext.rs -------------------------------------------------------------------------------- /src/resources/subscription_schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/subscription_schedule.rs -------------------------------------------------------------------------------- /src/resources/tax_deducted_at_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/tax_deducted_at_source.rs -------------------------------------------------------------------------------- /src/resources/tax_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/tax_id.rs -------------------------------------------------------------------------------- /src/resources/tax_rate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/tax_rate.rs -------------------------------------------------------------------------------- /src/resources/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/token.rs -------------------------------------------------------------------------------- /src/resources/token_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/token_ext.rs -------------------------------------------------------------------------------- /src/resources/topup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/topup.rs -------------------------------------------------------------------------------- /src/resources/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/transfer.rs -------------------------------------------------------------------------------- /src/resources/transfer_reversal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/transfer_reversal.rs -------------------------------------------------------------------------------- /src/resources/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/types.rs -------------------------------------------------------------------------------- /src/resources/webhook_endpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/webhook_endpoint.rs -------------------------------------------------------------------------------- /src/resources/webhook_endpoint_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/src/resources/webhook_endpoint_ext.rs -------------------------------------------------------------------------------- /tests/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/account.rs -------------------------------------------------------------------------------- /tests/charge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/charge.rs -------------------------------------------------------------------------------- /tests/customer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/customer.rs -------------------------------------------------------------------------------- /tests/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/encoding.rs -------------------------------------------------------------------------------- /tests/mock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/mock/mod.rs -------------------------------------------------------------------------------- /tests/subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyyerd/stripe-rs/HEAD/tests/subscription.rs --------------------------------------------------------------------------------