Add `Updated` and `UpdateAuthor` fields to `Comment`
parent
481e12aec6
commit
cde379f85b
|
@ -4,6 +4,8 @@ type Comment struct {
|
||||||
Self string `json:"self"`
|
Self string `json:"self"`
|
||||||
Id string `json:"id"`
|
Id string `json:"id"`
|
||||||
Author User `json:"author"`
|
Author User `json:"author"`
|
||||||
|
UpdateAuthor User `json:"updateAuthor"`
|
||||||
Body string `json:"body"`
|
Body string `json:"body"`
|
||||||
Created Time `json:"created"`
|
Created Time `json:"created"`
|
||||||
|
Updated Time `json:"updated"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue