@@ -99,7 +99,7 @@ export const CARD_VERIFICATION_STATUS = {
99
99
* @property {CardExpiration } expiration - Card expiration date
100
100
* @property {string } cardCvv - 3-4 digit card verification value
101
101
* @property {string } holderName - Full name of the card holder
102
- * @property {CardBillingAddress } billingAddress - The billing address of the card
102
+ * @property {Partial<Pick< CardBillingAddress, 'addressLine1' | 'addressLine2' | 'city' | 'stateOrProvince' | 'country'>> } billingAddress - The billing address of the card
103
103
*
104
104
* @tag Cards
105
105
*/
@@ -141,7 +141,7 @@ export const CARD_VERIFICATION_STATUS = {
141
141
* @property {CardVerficationStatuses } cardVerfication - The results of submitting cardholder data to a card network for verification
142
142
* @property {string } issuer - The name of the issuer
143
143
* @property {string } issuerCountry - The country of the issuer
144
- *
144
+ *
145
145
* @example
146
146
* {
147
147
"cardID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
@@ -171,7 +171,7 @@ export const CARD_VERIFICATION_STATUS = {
171
171
"issuer": "GRINGOTTS BANK",
172
172
"issuerCountry": "US"
173
173
}
174
- *
174
+ *
175
175
* @tag Cards
176
176
*/
177
177
@@ -187,7 +187,7 @@ export class Cards {
187
187
/**
188
188
* Retrieves details for the card with the specified ID.
189
189
* The `CARDS_READ` scope enum is required when making a request from the browser.
190
- *
190
+ *
191
191
* @param {string } accountID - Account to query
192
192
* @param {string } cardID - Card to query
193
193
* @returns {Promise<Card> }
@@ -210,7 +210,7 @@ export class Cards {
210
210
/**
211
211
* Lists all the cards associated with a particular Moov account.
212
212
* The `CARDS_READ` scope enum is required when making a request from the browser.
213
- *
213
+ *
214
214
* @param {string } accountID - Account to query
215
215
* @returns {Promise<Card[]> }
216
216
* @tag Cards
@@ -232,7 +232,7 @@ export class Cards {
232
232
* Links a card to a Moov account. Only use this endpoint if you have provided Moov with a
233
233
* copy of your PCI attestation of compliance.
234
234
* The `CARDS_WRITE` scope enum is required when making a request from the browser.
235
- *
235
+ *
236
236
* @param {string } accountID - Account to link
237
237
* @param {LinkCard } card - Card information
238
238
* @returns {Promise<Card> }
@@ -256,7 +256,7 @@ export class Cards {
256
256
/**
257
257
* Disables a card with the specified ID.
258
258
* The `CARDS_WRITE` scope enum is required when making a request from the browser.
259
- *
259
+ *
260
260
* @param {string } accountID - Account to query
261
261
* @param {string } cardID - Card to query
262
262
* @returns {Promise<void> }
0 commit comments