diff --git a/lib/Account.php b/lib/Account.php index e5d846b0f..330824cbc 100644 --- a/lib/Account.php +++ b/lib/Account.php @@ -22,7 +22,7 @@ * @property \Stripe\StripeObject $company * @property \Stripe\StripeObject $controller * @property string $country The account's country. - * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. + * @property int $created Time at which the account was connected. Measured in seconds since the Unix epoch. * @property string $default_currency Three-letter ISO currency code representing the default currency for the account. This must be a currency that Stripe supports in the account's country. * @property bool $details_submitted Whether account details have been submitted. Standard accounts cannot receive payouts before this is true. * @property null|string $email An email address associated with the account. You can treat this as metadata: it is not used for authentication or messaging account holders. diff --git a/lib/Charge.php b/lib/Charge.php index 0737d20ad..d4f209541 100644 --- a/lib/Charge.php +++ b/lib/Charge.php @@ -32,6 +32,7 @@ * @property null|string|\Stripe\Account $destination ID of an existing, connected Stripe account to transfer funds to if transfer_data was specified in the charge request. * @property null|string|\Stripe\Dispute $dispute Details about the dispute if the charge has been disputed. * @property bool $disputed Whether the charge has been disputed. + * @property null|string|\Stripe\BalanceTransaction $failure_balance_transaction ID of the balance transaction that describes the reversal of the balance on your account due to payment failure. * @property null|string $failure_code Error code explaining reason for charge failure if available (see the errors section for a list of codes). * @property null|string $failure_message Message to user further explaining reason for charge failure if available. * @property null|\Stripe\StripeObject $fraud_details Information on fraud assessments for the charge. diff --git a/lib/PaymentMethod.php b/lib/PaymentMethod.php index fac09ec8a..36384dabb 100644 --- a/lib/PaymentMethod.php +++ b/lib/PaymentMethod.php @@ -42,9 +42,11 @@ * @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. * @property \Stripe\StripeObject $oxxo * @property \Stripe\StripeObject $p24 + * @property \Stripe\StripeObject $paynow * @property \Stripe\StripeObject $sepa_debit * @property \Stripe\StripeObject $sofort * @property string $type The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type. + * @property \Stripe\StripeObject $us_bank_account * @property \Stripe\StripeObject $wechat_pay */ class PaymentMethod extends ApiResource