2025-11-15 17:43:23 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type PromotionsResponse struct {
|
|
|
|
|
ID uint `json:"id"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
Description *string `json:"description"`
|
|
|
|
|
ThumbnailPath *string `json:"thumbnail_path"`
|
|
|
|
|
ThumbnailUrl *string `json:"thumbnail_url"`
|
2026-01-20 01:08:14 +00:00
|
|
|
StatusId *int `json:"status_id"`
|
2025-11-15 17:43:23 +00:00
|
|
|
IsActive *bool `json:"is_active"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
|
}
|
|
|
|
|
|