@finverse/sdk-typescript 0.0.215 → 0.0.216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +12 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1697,6 +1697,18 @@ export interface FVCard {
|
|
|
1697
1697
|
* @memberof FVCard
|
|
1698
1698
|
*/
|
|
1699
1699
|
status?: FVCardStatusEnum;
|
|
1700
|
+
/**
|
|
1701
|
+
* The credit card brand
|
|
1702
|
+
* @type {string}
|
|
1703
|
+
* @memberof FVCard
|
|
1704
|
+
*/
|
|
1705
|
+
brand?: string;
|
|
1706
|
+
/**
|
|
1707
|
+
* Last 4 digits of the credit card number
|
|
1708
|
+
* @type {string}
|
|
1709
|
+
* @memberof FVCard
|
|
1710
|
+
*/
|
|
1711
|
+
last4?: string;
|
|
1700
1712
|
}
|
|
1701
1713
|
export declare const FVCardStatusEnum: {
|
|
1702
1714
|
readonly Unknown: "UNKNOWN";
|