diff --git a/lib/ApplicationFee.php b/lib/ApplicationFee.php index 9eb193f58..e4cd68743 100644 --- a/lib/ApplicationFee.php +++ b/lib/ApplicationFee.php @@ -7,16 +7,16 @@ * * @property string $id * @property string $object - * @property string $account + * @property string|\Stripe\Account $account * @property int $amount * @property int $amount_refunded - * @property string $application - * @property string|null $balance_transaction - * @property string $charge + * @property string|\Stripe\StripeObject $application + * @property string|\Stripe\BalanceTransaction|null $balance_transaction + * @property string|\Stripe\Charge $charge * @property int $created * @property string $currency * @property bool $livemode - * @property string|null $originating_transaction + * @property string|\Stripe\Charge|null $originating_transaction * @property bool $refunded * @property \Stripe\Collection $refunds * diff --git a/lib/BalanceTransaction.php b/lib/BalanceTransaction.php index 9493d4c95..970564d4e 100644 --- a/lib/BalanceTransaction.php +++ b/lib/BalanceTransaction.php @@ -17,7 +17,7 @@ * @property \Stripe\StripeObject[] $fee_details * @property int $net * @property string $reporting_category - * @property string|null $source + * @property string|\Stripe\StripeObject|null $source * @property string $status * @property string $type * diff --git a/lib/BankAccount.php b/lib/BankAccount.php index f8d66887e..4930323b5 100644 --- a/lib/BankAccount.php +++ b/lib/BankAccount.php @@ -7,13 +7,13 @@ * * @property string $id * @property string $object - * @property string|null $account + * @property string|\Stripe\Account|null $account * @property string|null $account_holder_name * @property string|null $account_holder_type * @property string|null $bank_name * @property string $country * @property string $currency - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property bool|null $default_for_currency * @property string|null $fingerprint * @property string $last4 diff --git a/lib/Card.php b/lib/Card.php index 7fb9a43d8..87647ed03 100644 --- a/lib/Card.php +++ b/lib/Card.php @@ -7,7 +7,7 @@ * * @property string $id * @property string $object - * @property string|null $account + * @property string|\Stripe\Account|null $account * @property string|null $address_city * @property string|null $address_country * @property string|null $address_line1 @@ -20,7 +20,7 @@ * @property string $brand * @property string|null $country * @property string|null $currency - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $cvc_check * @property bool|null $default_for_currency * @property string|null $dynamic_last4 @@ -31,7 +31,7 @@ * @property string $last4 * @property \Stripe\StripeObject $metadata * @property string|null $name - * @property string|null $recipient + * @property string|\Stripe\Recipient|null $recipient * @property string|null $tokenization_method * * @package Stripe diff --git a/lib/Charge.php b/lib/Charge.php index 6dded1417..c0f256a87 100644 --- a/lib/Charge.php +++ b/lib/Charge.php @@ -9,27 +9,27 @@ * @property string $object * @property int $amount * @property int $amount_refunded - * @property string|null $application - * @property string|null $application_fee + * @property string|\Stripe\StripeObject|null $application + * @property string|\Stripe\ApplicationFee|null $application_fee * @property int|null $application_fee_amount - * @property string|null $balance_transaction + * @property string|\Stripe\BalanceTransaction|null $balance_transaction * @property \Stripe\StripeObject $billing_details * @property bool $captured * @property int $created * @property string $currency - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $description - * @property string|null $destination - * @property string|null $dispute + * @property string|\Stripe\Account|null $destination + * @property string|\Stripe\Dispute|null $dispute * @property bool $disputed * @property string|null $failure_code * @property string|null $failure_message * @property \Stripe\StripeObject|null $fraud_details - * @property string|null $invoice + * @property string|\Stripe\Invoice|null $invoice * @property bool $livemode * @property \Stripe\StripeObject $metadata - * @property string|null $on_behalf_of - * @property string|null $order + * @property string|\Stripe\Account|null $on_behalf_of + * @property string|\Stripe\Order|null $order * @property \Stripe\StripeObject|null $outcome * @property bool $paid * @property string|null $payment_intent @@ -40,14 +40,14 @@ * @property string $receipt_url * @property bool $refunded * @property \Stripe\Collection $refunds - * @property string|null $review + * @property string|\Stripe\Review|null $review * @property \Stripe\StripeObject|null $shipping * @property \Stripe\StripeObject|null $source - * @property string|null $source_transfer + * @property string|\Stripe\Transfer|null $source_transfer * @property string|null $statement_descriptor * @property string|null $statement_descriptor_suffix * @property string $status - * @property string $transfer + * @property string|\Stripe\Transfer $transfer * @property \Stripe\StripeObject|null $transfer_data * @property string|null $transfer_group * diff --git a/lib/Checkout/Session.php b/lib/Checkout/Session.php index 109b3a50e..f62248a4c 100644 --- a/lib/Checkout/Session.php +++ b/lib/Checkout/Session.php @@ -10,18 +10,18 @@ * @property string|null $billing_address_collection * @property string $cancel_url * @property string|null $client_reference_id - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $customer_email * @property \Stripe\StripeObject[]|null $display_items * @property bool $livemode * @property string|null $locale * @property \Stripe\StripeObject|null $metadata * @property string|null $mode - * @property string|null $payment_intent + * @property string|\Stripe\PaymentIntent|null $payment_intent * @property string[] $payment_method_types - * @property string|null $setup_intent + * @property string|\Stripe\SetupIntent|null $setup_intent * @property string|null $submit_type - * @property string|null $subscription + * @property string|\Stripe\Subscription|null $subscription * @property string $success_url * * @package Stripe\Checkout diff --git a/lib/CreditNote.php b/lib/CreditNote.php index c9782d10e..930c2457c 100644 --- a/lib/CreditNote.php +++ b/lib/CreditNote.php @@ -10,10 +10,10 @@ * @property int $amount * @property int $created * @property string $currency - * @property string $customer - * @property string|null $customer_balance_transaction + * @property string|\Stripe\Customer $customer + * @property string|\Stripe\CustomerBalanceTransaction|null $customer_balance_transaction * @property int $discount_amount - * @property string $invoice + * @property string|\Stripe\Invoice $invoice * @property \Stripe\Collection $lines * @property bool $livemode * @property string|null $memo @@ -22,7 +22,7 @@ * @property int|null $out_of_band_amount * @property string $pdf * @property string|null $reason - * @property string|null $refund + * @property string|\Stripe\Refund|null $refund * @property string $status * @property int $subtotal * @property \Stripe\StripeObject[] $tax_amounts diff --git a/lib/Customer.php b/lib/Customer.php index 3858733f3..bb3041016 100644 --- a/lib/Customer.php +++ b/lib/Customer.php @@ -11,7 +11,7 @@ * @property int $balance * @property int $created * @property string|null $currency - * @property string|null $default_source + * @property string|\Stripe\StripeObject|null $default_source * @property bool|null $delinquent * @property string|null $description * @property \Stripe\Discount|null $discount diff --git a/lib/Dispute.php b/lib/Dispute.php index b9b2df161..52fb463b3 100644 --- a/lib/Dispute.php +++ b/lib/Dispute.php @@ -9,7 +9,7 @@ * @property string $object * @property int $amount * @property \Stripe\BalanceTransaction[] $balance_transactions - * @property string $charge + * @property string|\Stripe\Charge $charge * @property int $created * @property string $currency * @property \Stripe\StripeObject $evidence @@ -18,7 +18,7 @@ * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property string|null $network_reason_code - * @property string|null $payment_intent + * @property string|\Stripe\PaymentIntent|null $payment_intent * @property string $reason * @property string $status * diff --git a/lib/FileLink.php b/lib/FileLink.php index e3386beb1..b0ed661d3 100644 --- a/lib/FileLink.php +++ b/lib/FileLink.php @@ -10,7 +10,7 @@ * @property int $created * @property bool $expired * @property int|null $expires_at - * @property string $file + * @property string|\Stripe\File $file * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property string|null $url diff --git a/lib/Invoice.php b/lib/Invoice.php index 0421ad409..f44e27070 100644 --- a/lib/Invoice.php +++ b/lib/Invoice.php @@ -17,12 +17,12 @@ * @property bool $attempted * @property bool $auto_advance * @property string|null $billing_reason - * @property string|null $charge + * @property string|\Stripe\Charge|null $charge * @property string|null $collection_method * @property int $created * @property string $currency * @property \Stripe\StripeObject[]|null $custom_fields - * @property string $customer + * @property string|\Stripe\Customer $customer * @property \Stripe\StripeObject|null $customer_address * @property string|null $customer_email * @property string|null $customer_name @@ -30,8 +30,8 @@ * @property \Stripe\StripeObject|null $customer_shipping * @property string|null $customer_tax_exempt * @property \Stripe\StripeObject[]|null $customer_tax_ids - * @property string|null $default_payment_method - * @property string|null $default_source + * @property string|\Stripe\PaymentMethod|null $default_payment_method + * @property string|\Stripe\StripeObject|null $default_source * @property \Stripe\TaxRate[]|null $default_tax_rates * @property string|null $description * @property \Stripe\Discount|null $discount @@ -46,7 +46,7 @@ * @property int|null $next_payment_attempt * @property string|null $number * @property bool $paid - * @property string|null $payment_intent + * @property string|\Stripe\PaymentIntent|null $payment_intent * @property int $period_end * @property int $period_start * @property int $post_payment_credit_notes_amount @@ -56,7 +56,7 @@ * @property string|null $statement_descriptor * @property string|null $status * @property \Stripe\StripeObject $status_transitions - * @property string|null $subscription + * @property string|\Stripe\Subscription|null $subscription * @property int $subscription_proration_date * @property int $subtotal * @property int|null $tax diff --git a/lib/InvoiceItem.php b/lib/InvoiceItem.php index 41f660010..a275809e3 100644 --- a/lib/InvoiceItem.php +++ b/lib/InvoiceItem.php @@ -9,18 +9,18 @@ * @property string $object * @property int $amount * @property string $currency - * @property string $customer + * @property string|\Stripe\Customer $customer * @property int $date * @property string|null $description * @property bool $discountable - * @property string|null $invoice + * @property string|\Stripe\Invoice|null $invoice * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property \Stripe\StripeObject $period * @property \Stripe\Plan|null $plan * @property bool $proration * @property int $quantity - * @property string|null $subscription + * @property string|\Stripe\Subscription|null $subscription * @property string $subscription_item * @property \Stripe\TaxRate[]|null $tax_rates * @property bool $unified_proration diff --git a/lib/Issuing/Authorization.php b/lib/Issuing/Authorization.php index fa1136c37..28cf18985 100644 --- a/lib/Issuing/Authorization.php +++ b/lib/Issuing/Authorization.php @@ -13,7 +13,7 @@ * @property string $authorized_currency * @property \Stripe\BalanceTransaction[] $balance_transactions * @property \Stripe\Issuing\Card $card - * @property string|null $cardholder + * @property string|\Stripe\Issuing\Cardholder|null $cardholder * @property int $created * @property int $held_amount * @property string $held_currency diff --git a/lib/Issuing/Card.php b/lib/Issuing/Card.php index 97545d7bd..63459a777 100644 --- a/lib/Issuing/Card.php +++ b/lib/Issuing/Card.php @@ -19,7 +19,7 @@ * @property \Stripe\StripeObject $metadata * @property string $name * @property \Stripe\StripeObject|null $pin - * @property string|null $replacement_for + * @property string|\Stripe\Issuing\Card|null $replacement_for * @property string|null $replacement_reason * @property \Stripe\StripeObject|null $shipping * @property string $status diff --git a/lib/Issuing/Dispute.php b/lib/Issuing/Dispute.php index 2c309e490..9572519a3 100644 --- a/lib/Issuing/Dispute.php +++ b/lib/Issuing/Dispute.php @@ -10,7 +10,7 @@ * @property int $amount * @property int $created * @property string $currency - * @property string $disputed_transaction + * @property string|\Stripe\Issuing\Transaction $disputed_transaction * @property \Stripe\StripeObject $evidence * @property bool $livemode * @property \Stripe\StripeObject $metadata diff --git a/lib/Issuing/Transaction.php b/lib/Issuing/Transaction.php index 8ac771a3a..f2988c92e 100644 --- a/lib/Issuing/Transaction.php +++ b/lib/Issuing/Transaction.php @@ -8,13 +8,13 @@ * @property string $id * @property string $object * @property int $amount - * @property string|null $authorization - * @property string|null $balance_transaction - * @property string $card - * @property string|null $cardholder + * @property string|\Stripe\Issuing\Authorization|null $authorization + * @property string|\Stripe\BalanceTransaction|null $balance_transaction + * @property string|\Stripe\Issuing\Card $card + * @property string|\Stripe\Issuing\Cardholder|null $cardholder * @property int $created * @property string $currency - * @property string|null $dispute + * @property string|\Stripe\Issuing\Dispute|null $dispute * @property bool $livemode * @property int $merchant_amount * @property string $merchant_currency diff --git a/lib/Mandate.php b/lib/Mandate.php index 0d7aebffb..8538844ee 100644 --- a/lib/Mandate.php +++ b/lib/Mandate.php @@ -10,7 +10,7 @@ * @property \Stripe\StripeObject $customer_acceptance * @property bool $livemode * @property \Stripe\StripeObject $multi_use - * @property string $payment_method + * @property string|\Stripe\PaymentMethod $payment_method * @property \Stripe\StripeObject $payment_method_details * @property \Stripe\StripeObject $single_use * @property string $status diff --git a/lib/Order.php b/lib/Order.php index c1e49dd45..86b621c2e 100644 --- a/lib/Order.php +++ b/lib/Order.php @@ -11,10 +11,10 @@ * @property int|null $amount_returned * @property string|null $application * @property int|null $application_fee - * @property string|null $charge + * @property string|\Stripe\Charge|null $charge * @property int $created * @property string $currency - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $email * @property string $external_coupon_code * @property \Stripe\OrderItem[] $items diff --git a/lib/OrderReturn.php b/lib/OrderReturn.php index 0c6105630..0195a77ba 100644 --- a/lib/OrderReturn.php +++ b/lib/OrderReturn.php @@ -12,8 +12,8 @@ * @property string $currency * @property \Stripe\OrderItem[] $items * @property bool $livemode - * @property string|null $order - * @property string|null $refund + * @property string|\Stripe\Order|null $order + * @property string|\Stripe\Refund|null $refund * * @package Stripe */ diff --git a/lib/PaymentIntent.php b/lib/PaymentIntent.php index e6b6d0eb1..3163fcee0 100644 --- a/lib/PaymentIntent.php +++ b/lib/PaymentIntent.php @@ -10,7 +10,7 @@ * @property int $amount * @property int $amount_capturable * @property int $amount_received - * @property string|null $application + * @property string|\Stripe\StripeObject|null $application * @property int|null $application_fee_amount * @property int|null $canceled_at * @property string|null $cancellation_reason @@ -20,22 +20,22 @@ * @property string $confirmation_method * @property int $created * @property string $currency - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $description - * @property string|null $invoice + * @property string|\Stripe\Invoice|null $invoice * @property \Stripe\ErrorObject|null $last_payment_error * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property \Stripe\StripeObject|null $next_action - * @property string|null $on_behalf_of - * @property string|null $payment_method + * @property string|\Stripe\Account|null $on_behalf_of + * @property string|\Stripe\PaymentMethod|null $payment_method * @property \Stripe\StripeObject|null $payment_method_options * @property string[] $payment_method_types * @property string|null $receipt_email - * @property string|null $review + * @property string|\Stripe\Review|null $review * @property string|null $setup_future_usage * @property \Stripe\StripeObject|null $shipping - * @property string|null $source + * @property string|\Stripe\StripeObject|null $source * @property string|null $statement_descriptor * @property string|null $statement_descriptor_suffix * @property string $status diff --git a/lib/PaymentMethod.php b/lib/PaymentMethod.php index c0312024d..817a50c5f 100644 --- a/lib/PaymentMethod.php +++ b/lib/PaymentMethod.php @@ -12,7 +12,7 @@ * @property \Stripe\StripeObject $card * @property \Stripe\StripeObject $card_present * @property int $created - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property \Stripe\StripeObject $fpx * @property \Stripe\StripeObject $ideal * @property bool $livemode diff --git a/lib/Payout.php b/lib/Payout.php index 81a8958b6..5281068db 100644 --- a/lib/Payout.php +++ b/lib/Payout.php @@ -10,12 +10,12 @@ * @property int $amount * @property int $arrival_date * @property bool $automatic - * @property string|null $balance_transaction + * @property string|\Stripe\BalanceTransaction|null $balance_transaction * @property int $created * @property string $currency * @property string|null $description - * @property string|null $destination - * @property string|null $failure_balance_transaction + * @property string|\Stripe\StripeObject|null $destination + * @property string|\Stripe\BalanceTransaction|null $failure_balance_transaction * @property string|null $failure_code * @property string|null $failure_message * @property bool $livemode diff --git a/lib/Plan.php b/lib/Plan.php index f1abcf87e..ffaf87360 100644 --- a/lib/Plan.php +++ b/lib/Plan.php @@ -19,7 +19,7 @@ * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property string|null $nickname - * @property string|null $product + * @property string|\Stripe\Product|null $product * @property \Stripe\StripeObject[]|null $tiers * @property string|null $tiers_mode * @property \Stripe\StripeObject|null $transform_usage diff --git a/lib/Radar/EarlyFraudWarning.php b/lib/Radar/EarlyFraudWarning.php index 95daac29a..92979d4be 100644 --- a/lib/Radar/EarlyFraudWarning.php +++ b/lib/Radar/EarlyFraudWarning.php @@ -8,7 +8,7 @@ * @property string $id * @property string $object * @property bool $actionable - * @property string $charge + * @property string|\Stripe\Charge $charge * @property int $created * @property string $fraud_type * @property bool $livemode diff --git a/lib/Recipient.php b/lib/Recipient.php index fa4ec4d1b..0f788561a 100644 --- a/lib/Recipient.php +++ b/lib/Recipient.php @@ -10,14 +10,14 @@ * @property \Stripe\BankAccount|null $active_account * @property \Stripe\Collection|null $cards * @property int $created - * @property string|null $default_card + * @property string|\Stripe\Card|null $default_card * @property string|null $description * @property string|null $email * @property bool $livemode * @property \Stripe\StripeObject $metadata - * @property string|null $migrated_to + * @property string|\Stripe\Account|null $migrated_to * @property string|null $name - * @property string $rolled_back_from + * @property string|\Stripe\Account $rolled_back_from * @property string $type * @property bool $verified * diff --git a/lib/Refund.php b/lib/Refund.php index 2d37ab895..66300d97b 100644 --- a/lib/Refund.php +++ b/lib/Refund.php @@ -8,20 +8,20 @@ * @property string $id * @property string $object * @property int $amount - * @property string|null $balance_transaction - * @property string|null $charge + * @property string|\Stripe\BalanceTransaction|null $balance_transaction + * @property string|\Stripe\Charge|null $charge * @property int $created * @property string $currency * @property string $description - * @property string $failure_balance_transaction + * @property string|\Stripe\BalanceTransaction $failure_balance_transaction * @property string $failure_reason * @property \Stripe\StripeObject $metadata - * @property string|null $payment_intent + * @property string|\Stripe\PaymentIntent|null $payment_intent * @property string|null $reason * @property string|null $receipt_number - * @property string|null $source_transfer_reversal + * @property string|\Stripe\TransferReversal|null $source_transfer_reversal * @property string|null $status - * @property string|null $transfer_reversal + * @property string|\Stripe\TransferReversal|null $transfer_reversal * * @package Stripe */ diff --git a/lib/Review.php b/lib/Review.php index 495fb2e8d..86226c5e3 100644 --- a/lib/Review.php +++ b/lib/Review.php @@ -8,7 +8,7 @@ * @property string $id * @property string $object * @property string|null $billing_zip - * @property string|null $charge + * @property string|\Stripe\Charge|null $charge * @property string|null $closed_reason * @property int $created * @property string|null $ip_address @@ -16,7 +16,7 @@ * @property bool $livemode * @property bool $open * @property string $opened_reason - * @property string $payment_intent + * @property string|\Stripe\PaymentIntent $payment_intent * @property string $reason * @property \Stripe\StripeObject|null $session * diff --git a/lib/SKU.php b/lib/SKU.php index 61bae336d..b7b97715b 100644 --- a/lib/SKU.php +++ b/lib/SKU.php @@ -17,7 +17,7 @@ * @property \Stripe\StripeObject $metadata * @property \Stripe\StripeObject|null $package_dimensions * @property int $price - * @property string $product + * @property string|\Stripe\Product $product * @property int $updated * * @package Stripe diff --git a/lib/SetupIntent.php b/lib/SetupIntent.php index 95d74cea3..b86319fc6 100644 --- a/lib/SetupIntent.php +++ b/lib/SetupIntent.php @@ -7,22 +7,22 @@ * * @property string $id * @property string $object - * @property string|null $application + * @property string|\Stripe\StripeObject|null $application * @property string|null $cancellation_reason * @property string|null $client_secret * @property int $created - * @property string|null $customer + * @property string|\Stripe\Customer|null $customer * @property string|null $description * @property \Stripe\ErrorObject|null $last_setup_error * @property bool $livemode - * @property string|null $mandate + * @property string|\Stripe\Mandate|null $mandate * @property \Stripe\StripeObject $metadata * @property \Stripe\StripeObject|null $next_action - * @property string|null $on_behalf_of - * @property string|null $payment_method + * @property string|\Stripe\Account|null $on_behalf_of + * @property string|\Stripe\PaymentMethod|null $payment_method * @property \Stripe\StripeObject|null $payment_method_options * @property string[] $payment_method_types - * @property string|null $single_use_mandate + * @property string|\Stripe\Mandate|null $single_use_mandate * @property string $status * @property string $usage * diff --git a/lib/Subscription.php b/lib/Subscription.php index defc046a9..7e0188b42 100644 --- a/lib/Subscription.php +++ b/lib/Subscription.php @@ -17,24 +17,24 @@ * @property int $created * @property int $current_period_end * @property int $current_period_start - * @property string $customer + * @property string|\Stripe\Customer $customer * @property int|null $days_until_due - * @property string|null $default_payment_method - * @property string|null $default_source + * @property string|\Stripe\PaymentMethod|null $default_payment_method + * @property string|\Stripe\StripeObject|null $default_source * @property \Stripe\TaxRate[]|null $default_tax_rates * @property \Stripe\Discount|null $discount * @property int|null $ended_at * @property \Stripe\Collection $items - * @property string|null $latest_invoice + * @property string|\Stripe\Invoice|null $latest_invoice * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property int|null $next_pending_invoice_item_invoice * @property \Stripe\StripeObject|null $pending_invoice_item_interval - * @property string|null $pending_setup_intent + * @property string|\Stripe\SetupIntent|null $pending_setup_intent * @property \Stripe\StripeObject|null $pending_update * @property \Stripe\Plan|null $plan * @property int|null $quantity - * @property string|null $schedule + * @property string|\Stripe\SubscriptionSchedule|null $schedule * @property int $start_date * @property string $status * @property float|null $tax_percent diff --git a/lib/SubscriptionSchedule.php b/lib/SubscriptionSchedule.php index 98f5d80df..b00836021 100644 --- a/lib/SubscriptionSchedule.php +++ b/lib/SubscriptionSchedule.php @@ -11,7 +11,7 @@ * @property int|null $completed_at * @property int $created * @property \Stripe\StripeObject|null $current_phase - * @property string $customer + * @property string|\Stripe\Customer $customer * @property \Stripe\StripeObject $default_settings * @property string $end_behavior * @property bool $livemode @@ -21,7 +21,7 @@ * @property string|null $released_subscription * @property \Stripe\StripeObject|null $renewal_interval * @property string $status - * @property string|null $subscription + * @property string|\Stripe\Subscription|null $subscription * * @package Stripe */ diff --git a/lib/Topup.php b/lib/Topup.php index f8ab3d11e..d479e3c99 100644 --- a/lib/Topup.php +++ b/lib/Topup.php @@ -8,7 +8,7 @@ * @property string $id * @property string $object * @property int $amount - * @property string|null $balance_transaction + * @property string|\Stripe\BalanceTransaction|null $balance_transaction * @property int $created * @property string $currency * @property string|null $description diff --git a/lib/Transfer.php b/lib/Transfer.php index f9a014753..ab25486d2 100644 --- a/lib/Transfer.php +++ b/lib/Transfer.php @@ -9,17 +9,17 @@ * @property string $object * @property int $amount * @property int $amount_reversed - * @property string|null $balance_transaction + * @property string|\Stripe\BalanceTransaction|null $balance_transaction * @property int $created * @property string $currency * @property string|null $description - * @property string|null $destination - * @property string $destination_payment + * @property string|\Stripe\Account|null $destination + * @property string|\Stripe\Charge $destination_payment * @property bool $livemode * @property \Stripe\StripeObject $metadata * @property \Stripe\Collection $reversals * @property bool $reversed - * @property string|null $source_transaction + * @property string|\Stripe\Charge|null $source_transaction * @property string|null $source_type * @property string|null $transfer_group *