ApiOperations
6 years ago
Checkout
6 years ago
Error
6 years ago
HttpClient
6 years ago
Issuing
6 years ago
Radar
6 years ago
Reporting
6 years ago
Sigma
6 years ago
Terminal
6 years ago
Util
6 years ago
Account.php
6 years ago
AccountLink.php
6 years ago
AlipayAccount.php
6 years ago
ApiRequestor.php
6 years ago
ApiResource.php
6 years ago
ApiResponse.php
6 years ago
ApplePayDomain.php
6 years ago
ApplicationFee.php
6 years ago
ApplicationFeeRefund.php
6 years ago
Balance.php
6 years ago
BalanceTransaction.php
6 years ago
BankAccount.php
6 years ago
BitcoinReceiver.php
6 years ago
BitcoinTransaction.php
6 years ago
Capability.php
6 years ago
Card.php
6 years ago
Charge.php
6 years ago
Collection.php
6 years ago
CountrySpec.php
6 years ago
Coupon.php
6 years ago
CreditNote.php
6 years ago
Customer.php
6 years ago
CustomerBalanceTransaction.php
6 years ago
Discount.php
6 years ago
Dispute.php
6 years ago
EphemeralKey.php
6 years ago
Event.php
6 years ago
ExchangeRate.php
6 years ago
File.php
6 years ago
FileLink.php
6 years ago
FileUpload.php
6 years ago
Invoice.php
6 years ago
InvoiceItem.php
6 years ago
InvoiceLineItem.php
6 years ago
IssuerFraudRecord.php
6 years ago
LoginLink.php
6 years ago
OAuth.php
6 years ago
Order.php
6 years ago
OrderItem.php
6 years ago
OrderReturn.php
6 years ago
PaymentIntent.php
6 years ago
PaymentMethod.php
6 years ago
Payout.php
6 years ago
Person.php
6 years ago
Plan.php
6 years ago
Product.php
6 years ago
Recipient.php
6 years ago
RecipientTransfer.php
6 years ago
Refund.php
6 years ago
RequestTelemetry.php
6 years ago
Review.php
6 years ago
SKU.php
6 years ago
SetupIntent.php
6 years ago
SingletonApiResource.php
6 years ago
Source.php
6 years ago
SourceTransaction.php
6 years ago
Stripe.php
6 years ago
StripeObject.php
6 years ago
Subscription.php
6 years ago
SubscriptionItem.php
6 years ago
SubscriptionSchedule.php
6 years ago
TaxId.php
6 years ago
TaxRate.php
6 years ago
ThreeDSecure.php
6 years ago
Token.php
6 years ago
Topup.php
6 years ago
Transfer.php
6 years ago
TransferReversal.php
6 years ago
UsageRecord.php
6 years ago
UsageRecordSummary.php
6 years ago
Webhook.php
6 years ago
WebhookEndpoint.php
6 years ago
WebhookSignature.php
6 years ago
Capability.php
83 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class Capability |
| 7 | * |
| 8 | * @package Stripe |
| 9 | * |
| 10 | * @property string $id |
| 11 | * @property string $object |
| 12 | * @property string $account |
| 13 | * @property bool $requested |
| 14 | * @property int $requested_at |
| 15 | * @property mixed $requirements |
| 16 | * @property string $status |
| 17 | */ |
| 18 | class Capability extends ApiResource |
| 19 | { |
| 20 | const OBJECT_NAME = "capability"; |
| 21 | |
| 22 | use ApiOperations\Update; |
| 23 | |
| 24 | /** |
| 25 | * Possible string representations of a capability's status. |
| 26 | * @link https://stripe.com/docs/api/capabilities/object#capability_object-status |
| 27 | */ |
| 28 | const STATUS_ACTIVE = 'active'; |
| 29 | const STATUS_INACTIVE = 'inactive'; |
| 30 | const STATUS_PENDING = 'pending'; |
| 31 | const STATUS_UNREQUESTED = 'unrequested'; |
| 32 | |
| 33 | /** |
| 34 | * @return string The API URL for this Stripe account reversal. |
| 35 | */ |
| 36 | public function instanceUrl() |
| 37 | { |
| 38 | $id = $this['id']; |
| 39 | $account = $this['account']; |
| 40 | if (!$id) { |
| 41 | throw new Error\InvalidRequest( |
| 42 | "Could not determine which URL to request: " . |
| 43 | "class instance has invalid ID: $id", |
| 44 | null |
| 45 | ); |
| 46 | } |
| 47 | $id = Util\Util::utf8($id); |
| 48 | $account = Util\Util::utf8($account); |
| 49 | |
| 50 | $base = Account::classUrl(); |
| 51 | $accountExtn = urlencode($account); |
| 52 | $extn = urlencode($id); |
| 53 | return "$base/$accountExtn/capabilities/$extn"; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @param array|string $_id |
| 58 | * @param array|string|null $_opts |
| 59 | * |
| 60 | * @throws \Stripe\Error\InvalidRequest |
| 61 | */ |
| 62 | public static function retrieve($_id, $_opts = null) |
| 63 | { |
| 64 | $msg = "Capabilities cannot be accessed without an account ID. " . |
| 65 | "Retrieve a Capability using \$account->retrieveCapability('acap_123') instead."; |
| 66 | throw new Error\InvalidRequest($msg, null); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @param string $_id |
| 71 | * @param array|null $_params |
| 72 | * @param array|string|null $_options |
| 73 | * |
| 74 | * @throws \Stripe\Error\InvalidRequest |
| 75 | */ |
| 76 | public static function update($_id, $_params = null, $_options = null) |
| 77 | { |
| 78 | $msg = "Capabilities cannot be accessed without an account ID. " . |
| 79 | "Update a Capability using \$account->updateCapability('acap_123') instead."; |
| 80 | throw new Error\InvalidRequest($msg, null); |
| 81 | } |
| 82 | } |
| 83 |