You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/AccountSession.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
* @property string $object String representing the object's type. Objects of the same type share the same value.
17
17
* @property string $account The ID of the account the AccountSession was created for
18
18
* @property string $client_secret <p>The client secret of this AccountSession. Used on the client to set up secure access to the given <code>account</code>.</p><p>The client secret can be used to provide access to <code>account</code> from your frontend. It should not be stored, logged, or exposed to anyone other than the connected account. Make sure that you have TLS enabled on any page that includes the client secret.</p><p>Refer to our docs to <a href="https://stripe.com/docs/connect/get-started-connect-embedded-components">setup Connect embedded components</a> and learn about how <code>client_secret</code> should be handled.</p>
* @property int $expires_at The timestamp at which this AccountSession will expire.
21
21
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
22
22
*/
@@ -28,7 +28,7 @@ class AccountSession extends ApiResource
28
28
* Creates a AccountSession object that includes a single-use token that the
29
29
* platform can use on their front-end to grant client-side API access.
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
26
26
* @property (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[] $pending Funds that aren't available in the balance yet. You can find the pending balance for each currency and each payment type in the <code>source_types</code> property.
Copy file name to clipboardExpand all lines: lib/BalanceTransaction.php
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@
14
14
* @property string $object String representing the object's type. Objects of the same type share the same value.
15
15
* @property int $amount Gross amount of this transaction (in cents (or local equivalent)). A positive value represents funds charged to another party, and a negative value represents funds sent to another party.
16
16
* @property int $available_on The date that the transaction's net funds become available in the Stripe balance.
17
+
* @property string $balance_type The balance that this transaction impacts.
17
18
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
18
19
* @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
19
20
* @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
@@ -30,6 +31,10 @@ class BalanceTransaction extends ApiResource
0 commit comments