2018-04-26 07:37:59 +00:00
|
|
|
package target
|
2018-04-12 09:38:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Target struct {
|
2018-05-11 02:24:21 +00:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
|
|
CreateDate *util.Timestamp `json:"createDate,omitempty"`
|
|
|
|
DisplayName string `json:"displayName,omitempty"`
|
|
|
|
Description string `json:"description,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
}
|