From b93c7b4b76365b61b7758a5b448900a0738fd908 Mon Sep 17 00:00:00 2001 From: Pedro Lopez Date: Tue, 25 Jan 2022 20:48:44 -0400 Subject: [PATCH] fix invalid jsdoc --- src/structures/Payment.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structures/Payment.js b/src/structures/Payment.js index b3ff7dc..253ac02 100644 --- a/src/structures/Payment.js +++ b/src/structures/Payment.js @@ -40,7 +40,6 @@ class Payment extends Base { /** * The paymentStatus - * @type {number} * * Possible Status * 0:UNKNOWN_STATUS @@ -55,6 +54,8 @@ class Payment extends Base { * 9:CANCELLED * 10:WAITING_FOR_PAYER * 11:WAITING + * + * @type {number} */ this.paymentStatus = data.paymentStatus;