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
@@ -24,30 +24,32 @@ final class IntrafiExclusionCreateParams implements BaseModel
24
24
use SdkModel;
25
25
use SdkParams;
26
26
27
-
/**
28
-
* The name of the financial institution to be excluded.
29
-
*/
30
-
#[Required('bank_name')]
31
-
publicstring$bankName;
32
-
33
27
/**
34
28
* The identifier of the Entity whose deposits will be excluded.
35
29
*/
36
30
#[Required('entity_id')]
37
31
publicstring$entityID;
38
32
33
+
/**
34
+
* The FDIC certificate number of the financial institution to be excluded. An FDIC certificate number uniquely identifies a financial institution, and is different than a routing number. To find one, we recommend searching by Bank Name using the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
35
+
*/
36
+
#[Required('fdic_certificate_number')]
37
+
publicstring$fdicCertificateNumber;
38
+
39
39
/**
40
40
* `new IntrafiExclusionCreateParams()` is missing required properties by the API.
* The name of the financial institution to be excluded.
78
+
* The identifier of the Entity whose deposits will be excluded.
75
79
*/
76
-
publicfunctionwithBankName(string$bankName): self
80
+
publicfunctionwithEntityID(string$entityID): self
77
81
{
78
82
$self = clone$this;
79
-
$self['bankName'] = $bankName;
83
+
$self['entityID'] = $entityID;
80
84
81
85
return$self;
82
86
}
83
87
84
88
/**
85
-
* The identifier of the Entity whose deposits will be excluded.
89
+
* The FDIC certificate number of the financial institution to be excluded. An FDIC certificate number uniquely identifies a financial institution, and is different than a routing number. To find one, we recommend searching by Bank Name using the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
* @param string $bankName the name of the financial institution to be excluded
21
20
* @param string $entityID the identifier of the Entity whose deposits will be excluded
21
+
* @param string $fdicCertificateNumber The FDIC certificate number of the financial institution to be excluded. An FDIC certificate number uniquely identifies a financial institution, and is different than a routing number. To find one, we recommend searching by Bank Name using the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
Copy file name to clipboardExpand all lines: src/Services/IntrafiExclusionsService.php
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,19 +35,22 @@ public function __construct(private Client $client)
35
35
*
36
36
* Create an IntraFi Exclusion
37
37
*
38
-
* @param string $bankName the name of the financial institution to be excluded
39
38
* @param string $entityID the identifier of the Entity whose deposits will be excluded
39
+
* @param string $fdicCertificateNumber The FDIC certificate number of the financial institution to be excluded. An FDIC certificate number uniquely identifies a financial institution, and is different than a routing number. To find one, we recommend searching by Bank Name using the [FDIC's bankfind tool](https://banks.data.fdic.gov/bankfind-suite/bankfind).
0 commit comments