14 lines
393 B
Go
14 lines
393 B
Go
|
|
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"`
|
||
|
|
ApprovalAtLevel *int `json:"approvalAtLevel"`
|
||
|
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
|
}
|