From 25c0344175b2edd12ae2db632118018ea6594faf Mon Sep 17 00:00:00 2001 From: "aditya.siregar" Date: Tue, 27 Aug 2024 19:06:14 +0700 Subject: [PATCH] Fix Undefined Hari --- internal/handlers/response/auth.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/handlers/response/auth.go b/internal/handlers/response/auth.go index 64dd299..7e3eabc 100644 --- a/internal/handlers/response/auth.go +++ b/internal/handlers/response/auth.go @@ -23,6 +23,6 @@ type Role struct { } type PartnerLicense struct { - DaysToExpire int64 `json:"days_to_expire,omitempty"` - Status string `json:"status,omitempty"` + DaysToExpire int64 `json:"days_to_expire"` + Status string `json:"status"` }