Skip to content

Instantly share code, notes, and snippets.

@jonathan-fielding
Created January 12, 2021 22:03
Show Gist options
  • Save jonathan-fielding/6fc408b0a1723278472e4975d52c247c to your computer and use it in GitHub Desktop.
Save jonathan-fielding/6fc408b0a1723278472e4975d52c247c to your computer and use it in GitHub Desktop.
type AutoGenerated struct {
Status struct {
Verified bool `json:"verified"`
SentCount int `json:"sentCount"`
} `json:"status"`
Type string `json:"type"`
Deleted bool `json:"deleted"`
ID string `json:"_id"`
UpdatedAt time.Time `json:"updatedAt"`
CreatedAt time.Time `json:"createdAt"`
User string `json:"user"`
Text string `json:"text"`
Source string `json:"source"`
V int `json:"__v"`
Used bool `json:"used"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment