ApiOperations
6 months ago
Apps
6 months ago
Billing
6 months ago
BillingPortal
6 months ago
Checkout
6 months ago
Climate
6 months ago
Entitlements
6 months ago
EventData
6 months ago
Events
6 months ago
Exception
6 months ago
FinancialConnections
6 months ago
Forwarding
6 months ago
HttpClient
6 months ago
Identity
6 months ago
Issuing
6 months ago
Radar
6 months ago
Reporting
6 months ago
Service
6 months ago
Sigma
6 months ago
Tax
6 months ago
Terminal
6 months ago
TestHelpers
6 months ago
Treasury
6 months ago
Util
6 months ago
V2
6 months ago
Account.php
6 months ago
AccountLink.php
6 months ago
AccountSession.php
6 months ago
ApiRequestor.php
6 months ago
ApiResource.php
6 months ago
ApiResponse.php
6 months ago
ApplePayDomain.php
6 months ago
Application.php
6 months ago
ApplicationFee.php
6 months ago
ApplicationFeeRefund.php
6 months ago
Balance.php
6 months ago
BalanceTransaction.php
6 months ago
BankAccount.php
6 months ago
BaseStripeClient.php
6 months ago
BaseStripeClientInterface.php
6 months ago
Capability.php
6 months ago
Card.php
6 months ago
CashBalance.php
6 months ago
Charge.php
6 months ago
Collection.php
6 months ago
ConfirmationToken.php
6 months ago
ConnectCollectionTransfer.php
6 months ago
CountrySpec.php
6 months ago
Coupon.php
6 months ago
CreditNote.php
6 months ago
CreditNoteLineItem.php
6 months ago
Customer.php
6 months ago
CustomerBalanceTransaction.php
6 months ago
CustomerCashBalanceTransaction.php
6 months ago
CustomerSession.php
6 months ago
Discount.php
6 months ago
Dispute.php
6 months ago
EphemeralKey.php
6 months ago
ErrorObject.php
6 months ago
Event.php
6 months ago
ExchangeRate.php
6 months ago
File.php
6 months ago
FileLink.php
6 months ago
FundingInstructions.php
6 months ago
Invoice.php
6 months ago
InvoiceItem.php
6 months ago
InvoiceLineItem.php
6 months ago
InvoicePayment.php
6 months ago
InvoiceRenderingTemplate.php
6 months ago
LineItem.php
6 months ago
LoginLink.php
6 months ago
Mandate.php
6 months ago
OAuth.php
6 months ago
OAuthErrorObject.php
6 months ago
PaymentIntent.php
6 months ago
PaymentLink.php
6 months ago
PaymentMethod.php
6 months ago
PaymentMethodConfiguration.php
6 months ago
PaymentMethodDomain.php
6 months ago
Payout.php
6 months ago
Person.php
6 months ago
Plan.php
6 months ago
Price.php
6 months ago
Product.php
6 months ago
ProductFeature.php
6 months ago
PromotionCode.php
6 months ago
Quote.php
6 months ago
Reason.php
6 months ago
RecipientTransfer.php
6 months ago
Refund.php
6 months ago
RelatedObject.php
6 months ago
RequestTelemetry.php
6 months ago
ReserveTransaction.php
6 months ago
Review.php
6 months ago
SearchResult.php
6 months ago
SetupAttempt.php
6 months ago
SetupIntent.php
6 months ago
ShippingRate.php
6 months ago
SingletonApiResource.php
6 months ago
Source.php
6 months ago
SourceMandateNotification.php
6 months ago
SourceTransaction.php
6 months ago
Stripe.php
6 months ago
StripeClient.php
6 months ago
StripeClientInterface.php
6 months ago
StripeObject.php
6 months ago
StripeStreamingClientInterface.php
6 months ago
Subscription.php
6 months ago
SubscriptionItem.php
6 months ago
SubscriptionSchedule.php
6 months ago
TaxCode.php
6 months ago
TaxDeductedAtSource.php
6 months ago
TaxId.php
6 months ago
TaxRate.php
6 months ago
ThinEvent.php
6 months ago
Token.php
6 months ago
Topup.php
6 months ago
Transfer.php
6 months ago
TransferReversal.php
6 months ago
Webhook.php
6 months ago
WebhookEndpoint.php
6 months ago
WebhookSignature.php
6 months ago
CountrySpec.php
58 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | namespace AmeliaVendor\Stripe; |
| 5 | |
| 6 | /** |
| 7 | * Stripe needs to collect certain pieces of information about each account |
| 8 | * created. These requirements can differ depending on the account's country. The |
| 9 | * Country Specs API makes these rules available to your integration. |
| 10 | * |
| 11 | * You can also view the information from this API call as <a href="/docs/connect/required-verification-information">an online |
| 12 | * guide</a>. |
| 13 | * |
| 14 | * @property string $id Unique identifier for the object. Represented as the ISO country code for this country. |
| 15 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 16 | * @property string $default_currency The default currency for this country. This applies to both payment methods and bank accounts. |
| 17 | * @property \StripeObject $supported_bank_account_currencies Currencies that can be accepted in the specific country (for transfers). |
| 18 | * @property string[] $supported_payment_currencies Currencies that can be accepted in the specified country (for payments). |
| 19 | * @property string[] $supported_payment_methods Payment methods available in the specified country. You may need to enable some payment methods (e.g., <a href="https://stripe.com/docs/ach">ACH</a>) on your account before they appear in this list. The <code>stripe</code> payment method refers to <a href="https://stripe.com/docs/connect/destination-charges">charging through your platform</a>. |
| 20 | * @property string[] $supported_transfer_countries Countries that can accept transfers from the specified country. |
| 21 | * @property (object{company: (object{additional: string[], minimum: string[]}&StripeObject), individual: (object{additional: string[], minimum: string[]}&StripeObject)}&StripeObject) $verification_fields |
| 22 | */ |
| 23 | class CountrySpec extends ApiResource |
| 24 | { |
| 25 | const OBJECT_NAME = 'country_spec'; |
| 26 | /** |
| 27 | * Lists all Country Spec objects available in the API. |
| 28 | * |
| 29 | * @param null|array{ending_before?: string, expand?: string[], limit?: int, starting_after?: string} $params |
| 30 | * @param null|array|string $opts |
| 31 | * |
| 32 | * @return Collection<CountrySpec> of ApiResources |
| 33 | * |
| 34 | * @throws Exception\ApiErrorException if the request fails |
| 35 | */ |
| 36 | public static function all($params = null, $opts = null) |
| 37 | { |
| 38 | $url = static::classUrl(); |
| 39 | return static::_requestPage($url, Collection::class, $params, $opts); |
| 40 | } |
| 41 | /** |
| 42 | * Returns a Country Spec for a given Country code. |
| 43 | * |
| 44 | * @param array|string $id the ID of the API resource to retrieve, or an options array containing an `id` key |
| 45 | * @param null|array|string $opts |
| 46 | * |
| 47 | * @return CountrySpec |
| 48 | * |
| 49 | * @throws Exception\ApiErrorException if the request fails |
| 50 | */ |
| 51 | public static function retrieve($id, $opts = null) |
| 52 | { |
| 53 | $opts = \AmeliaVendor\Stripe\Util\RequestOptions::parse($opts); |
| 54 | $instance = new static($id, $opts); |
| 55 | $instance->refresh(); |
| 56 | return $instance; |
| 57 | } |
| 58 | } |