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
import "time"
type HelloBodyRequest struct {
Name string `json:"name" validate:"required"`
}
@ -10,7 +12,7 @@ type UpdateScopesRequest struct {
}
type RefreshTokenRequest struct {
Username string `json:"username"`
RefreshToken string `json:"refreshToken"`
ExpiresAt string `json:"expiresAt"`
Username string `json:"username"`
RefreshToken string `json:"refreshToken"`
ExpiresAt time.Time `json:"expiresAt"`
}