@@ -222,18 +222,6 @@ export interface Customer {
222222 */
223223 isDeleted ?: boolean ;
224224
225- /**
226- * The current KYC status of a customer
227- */
228- kycStatus ?:
229- | 'APPROVED'
230- | 'REJECTED'
231- | 'PENDING_REVIEW'
232- | 'EXPIRED'
233- | 'CANCELED'
234- | 'MANUALLY_APPROVED'
235- | 'MANUALLY_REJECTED' ;
236-
237225 /**
238226 * Last update timestamp
239227 */
@@ -275,6 +263,18 @@ export namespace CustomerOneOf {
275263 */
276264 fullName ?: string ;
277265
266+ /**
267+ * The current KYC status of a customer
268+ */
269+ kycStatus ?:
270+ | 'APPROVED'
271+ | 'REJECTED'
272+ | 'PENDING_REVIEW'
273+ | 'EXPIRED'
274+ | 'CANCELED'
275+ | 'MANUALLY_APPROVED'
276+ | 'MANUALLY_REJECTED' ;
277+
278278 /**
279279 * Country code (ISO 3166-1 alpha-2)
280280 */
@@ -289,6 +289,19 @@ export namespace CustomerOneOf {
289289 beneficialOwners ?: Array < BusinessCustomer . BeneficialOwner > ;
290290
291291 businessInfo ?: BusinessCustomer . BusinessInfo ;
292+
293+ /**
294+ * The current KYB status of a business customer
295+ */
296+ kybStatus ?:
297+ | 'AWAITING_SUBMISSION'
298+ | 'APPROVED'
299+ | 'REJECTED'
300+ | 'PENDING_REVIEW'
301+ | 'EXPIRED'
302+ | 'CANCELED'
303+ | 'MANUALLY_APPROVED'
304+ | 'MANUALLY_REJECTED' ;
292305 }
293306
294307 export namespace BusinessCustomer {
@@ -415,6 +428,18 @@ export namespace CustomerCreateParams {
415428 */
416429 fullName ?: string ;
417430
431+ /**
432+ * The current KYC status of a customer
433+ */
434+ kycStatus ?:
435+ | 'APPROVED'
436+ | 'REJECTED'
437+ | 'PENDING_REVIEW'
438+ | 'EXPIRED'
439+ | 'CANCELED'
440+ | 'MANUALLY_APPROVED'
441+ | 'MANUALLY_REJECTED' ;
442+
418443 /**
419444 * Country code (ISO 3166-1 alpha-2)
420445 */
@@ -429,6 +454,19 @@ export namespace CustomerCreateParams {
429454 beneficialOwners ?: Array < BusinessCustomerCreateRequest . BeneficialOwner > ;
430455
431456 businessInfo ?: BusinessCustomerCreateRequest . BusinessInfo ;
457+
458+ /**
459+ * The current KYB status of a business customer
460+ */
461+ kybStatus ?:
462+ | 'AWAITING_SUBMISSION'
463+ | 'APPROVED'
464+ | 'REJECTED'
465+ | 'PENDING_REVIEW'
466+ | 'EXPIRED'
467+ | 'CANCELED'
468+ | 'MANUALLY_APPROVED'
469+ | 'MANUALLY_REJECTED' ;
432470 }
433471
434472 export namespace BusinessCustomerCreateRequest {
@@ -530,6 +568,18 @@ export namespace CustomerUpdateParams {
530568 */
531569 fullName ?: string ;
532570
571+ /**
572+ * The current KYC status of a customer
573+ */
574+ kycStatus ?:
575+ | 'APPROVED'
576+ | 'REJECTED'
577+ | 'PENDING_REVIEW'
578+ | 'EXPIRED'
579+ | 'CANCELED'
580+ | 'MANUALLY_APPROVED'
581+ | 'MANUALLY_REJECTED' ;
582+
533583 /**
534584 * Country code (ISO 3166-1 alpha-2)
535585 */
@@ -547,6 +597,19 @@ export namespace CustomerUpdateParams {
547597 * Additional information for business entities
548598 */
549599 businessInfo ?: BusinessCustomerUpdateRequest . BusinessInfo ;
600+
601+ /**
602+ * The current KYB status of a business customer
603+ */
604+ kybStatus ?:
605+ | 'AWAITING_SUBMISSION'
606+ | 'APPROVED'
607+ | 'REJECTED'
608+ | 'PENDING_REVIEW'
609+ | 'EXPIRED'
610+ | 'CANCELED'
611+ | 'MANUALLY_APPROVED'
612+ | 'MANUALLY_REJECTED' ;
550613 }
551614
552615 export namespace BusinessCustomerUpdateRequest {
0 commit comments