16 lines
560 B
Go
16 lines
560 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type ReportedIssue struct {
|
|
ID int64 `json:"id"`
|
|
CustomerID int64 `json:"customer_id"`
|
|
Subject string `json:"subject"`
|
|
Description string `json:"description"`
|
|
IssueType string `json:"issue_type"`
|
|
Status string `json:"status"`
|
|
Metadata map[string]interface{} `json:"metadata,omitempty"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|