Files
History_Api/internal/dtos/response/verification.go
AzenKain 5c363589d8
All checks were successful
Build and Release / release (push) Successful in 1m7s
UPDATE: Change type response
2026-04-16 12:39:05 +07:00

17 lines
599 B
Go

package response
import "time"
type UserVerificationResponse struct {
ID string `json:"id"`
User *UserSimpleResponse `json:"user"`
VerifyType string `json:"verify_type"`
Content string `json:"content"`
Status string `json:"status"`
Reviewer *UserSimpleResponse `json:"reviewer"`
ReviewNote string `json:"review_note"`
ReviewedAt *time.Time `json:"reviewed_at"`
CreatedAt *time.Time `json:"created_at"`
Medias []*MediaSimpleResponse `json:"media"`
}