All checks were successful
Build and Release / release (push) Successful in 1m35s
21 lines
956 B
Go
21 lines
956 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type SubmissionResponse struct {
|
|
ID string `json:"id"`
|
|
ProjectID string `json:"project_id"`
|
|
CommitID string `json:"commit_id"`
|
|
UserID string `json:"user_id"`
|
|
CreatedAt *time.Time `json:"created_at"`
|
|
Status string `json:"status"`
|
|
ReviewedBy *string `json:"reviewed_by,omitempty"`
|
|
ReviewedAt *time.Time `json:"reviewed_at,omitempty"`
|
|
ReviewNote *string `json:"review_note,omitempty"`
|
|
Content *string `json:"content,omitempty"`
|
|
ProjectTitle string `json:"project_title"`
|
|
ProjectDescription *string `json:"project_description,omitempty"`
|
|
User *UserSimpleResponse `json:"user"`
|
|
Reviewer *UserSimpleResponse `json:"reviewer,omitempty"`
|
|
}
|