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: src/Accounts/Account.php
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@
27
27
* createdAt: \DateTimeInterface,
28
28
* currency: Currency|value-of<Currency>,
29
29
* entityID: string,
30
-
* funding: null|Funding|value-of<Funding>,
30
+
* funding: Funding|value-of<Funding>,
31
31
* idempotencyKey: string|null,
32
32
* informationalEntityID: string|null,
33
33
* interestAccrued: string,
@@ -94,10 +94,10 @@ final class Account implements BaseModel
94
94
/**
95
95
* Whether the Account is funded by a loan or by deposits.
96
96
*
97
-
* @var value-of<Funding>|null $funding
97
+
* @var value-of<Funding> $funding
98
98
*/
99
99
#[Required(enum: Funding::class)]
100
-
public?string$funding;
100
+
publicstring$funding;
101
101
102
102
/**
103
103
* The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
@@ -226,7 +226,7 @@ public function __construct()
226
226
*
227
227
* @param Bank|value-of<Bank> $bank
228
228
* @param Currency|value-of<Currency> $currency
229
-
* @param Funding|value-of<Funding>|null $funding
229
+
* @param Funding|value-of<Funding> $funding
230
230
* @param Loan|LoanShape|null $loan
231
231
* @param Status|value-of<Status> $status
232
232
* @param Type|value-of<Type> $type
@@ -239,7 +239,7 @@ public static function with(
239
239
\DateTimeInterface$createdAt,
240
240
Currency|string$currency,
241
241
string$entityID,
242
-
Funding|string|null$funding,
242
+
Funding|string$funding,
243
243
?string$idempotencyKey,
244
244
?string$informationalEntityID,
245
245
string$interestAccrued,
@@ -359,9 +359,9 @@ public function withEntityID(string $entityID): self
359
359
/**
360
360
* Whether the Account is funded by a loan or by deposits.
0 commit comments