added RefreshTokenRequest as a body

This commit is contained in:
James Tombleson 2024-04-21 08:59:25 -07:00
parent e218da5e7d
commit 0383d554b8
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
package domain package domain
import "time"
type HelloBodyRequest struct { type HelloBodyRequest struct {
Name string `json:"name" validate:"required"` Name string `json:"name" validate:"required"`
} }
@ -10,7 +12,7 @@ type UpdateScopesRequest struct {
} }
type RefreshTokenRequest struct { type RefreshTokenRequest struct {
Username string `json:"username"` Username string `json:"username"`
RefreshToken string `json:"refreshToken"` RefreshToken string `json:"refreshToken"`
ExpiresAt string `json:"expiresAt"` ExpiresAt time.Time `json:"expiresAt"`
} }