60 lines
2.2 KiB
Go
60 lines
2.2 KiB
Go
package contract
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type CreateOmsetTrackerRequest struct {
|
|
PeriodType string `json:"period_type" validate:"required,oneof=DAILY WEEKLY MONTHLY TOTAL"`
|
|
PeriodStart time.Time `json:"period_start" validate:"required"`
|
|
PeriodEnd time.Time `json:"period_end" validate:"required"`
|
|
Total int64 `json:"total" validate:"min=0"`
|
|
GameID *uuid.UUID `json:"game_id,omitempty"`
|
|
}
|
|
|
|
type UpdateOmsetTrackerRequest struct {
|
|
PeriodType *string `json:"period_type,omitempty" validate:"omitempty,oneof=DAILY WEEKLY MONTHLY TOTAL"`
|
|
PeriodStart *time.Time `json:"period_start,omitempty"`
|
|
PeriodEnd *time.Time `json:"period_end,omitempty"`
|
|
Total *int64 `json:"total,omitempty" validate:"omitempty,min=0"`
|
|
GameID *uuid.UUID `json:"game_id,omitempty"`
|
|
}
|
|
|
|
type AddOmsetRequest struct {
|
|
Amount int64 `json:"amount" validate:"required,min=1"`
|
|
}
|
|
|
|
type OmsetTrackerResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
PeriodType string `json:"period_type"`
|
|
PeriodStart time.Time `json:"period_start"`
|
|
PeriodEnd time.Time `json:"period_end"`
|
|
Total int64 `json:"total"`
|
|
GameID *uuid.UUID `json:"game_id,omitempty"`
|
|
Game *GameResponse `json:"game,omitempty"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type ListOmsetTrackerRequest struct {
|
|
Page int `json:"page" validate:"min=1"`
|
|
Limit int `json:"limit" validate:"min=1,max=100"`
|
|
Search string `json:"search"`
|
|
PeriodType string `json:"period_type" validate:"omitempty,oneof=DAILY WEEKLY MONTHLY TOTAL"`
|
|
GameID *uuid.UUID `json:"game_id"`
|
|
From *time.Time `json:"from"`
|
|
To *time.Time `json:"to"`
|
|
SortBy string `json:"sort_by" validate:"omitempty,oneof=period_type period_start total created_at updated_at"`
|
|
SortOrder string `json:"sort_order" validate:"omitempty,oneof=asc desc"`
|
|
}
|
|
|
|
type PaginatedOmsetTrackerResponse struct {
|
|
Data []OmsetTrackerResponse `json:"data"`
|
|
TotalCount int `json:"total_count"`
|
|
Page int `json:"page"`
|
|
Limit int `json:"limit"`
|
|
TotalPages int `json:"total_pages"`
|
|
}
|