2025-02-17 15:32:01 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type ArticleApprovalsResponse struct {
|
|
|
|
|
ID uint `json:"id"`
|
|
|
|
|
ArticleId uint `json:"articleId"`
|
|
|
|
|
ApprovalBy uint `json:"approvalBy"`
|
|
|
|
|
StatusId int `json:"statusId"`
|
|
|
|
|
Message string `json:"message"`
|
2025-02-17 22:15:57 +00:00
|
|
|
ApprovalAtLevel *int `json:"approvalAtLevel"`
|
2025-02-17 15:32:01 +00:00
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
|
}
|