From c3325da39d85f1e5aa180a00a1687f0eca98d3df Mon Sep 17 00:00:00 2001 From: Maxime Lalo Date: Fri, 1 Dec 2023 16:10:10 +0100 Subject: [PATCH] :sparkles: Adding resent to the TOTP Code --- src/Customer/TotpCodes.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Customer/TotpCodes.ts b/src/Customer/TotpCodes.ts index 677861e..24c3442 100644 --- a/src/Customer/TotpCodes.ts +++ b/src/Customer/TotpCodes.ts @@ -28,6 +28,9 @@ export default class TotpCodes extends Resource { @Expose() public code?: string; + @Expose() + public resent?: boolean; + @Expose() public expire_at?: Date; }