14 lines
343 B
Go
14 lines
343 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
// CandidatePost is a fetch hit before five-question judging.
|
||
|
|
type CandidatePost struct {
|
||
|
|
ExternalID string
|
||
|
|
Permalink string
|
||
|
|
AuthorHandle string
|
||
|
|
Text string
|
||
|
|
Title string
|
||
|
|
PostedAt int64 // 0 if unknown
|
||
|
|
MatchedTerm string
|
||
|
|
Classification string // scout-style label when available
|
||
|
|
}
|