Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BlogEntry ¶
type BlogEntry struct { ID int64 `json:"id"` // .ID OriginalLocale string `json:"originalLocale"` // .Original locale of the blog entry. CreationTimeSeconds int64 `json:"creationTimeSeconds"` // .Time, when blog entry was created, in unix format. AuthorHandle string `json:"authorHandle"` // .Author user handle. Title string `json:"title"` // .Localized. Content string `json:"content"` // .Localized. Not included in short version. Locale string `json:"locale"` //. Locale ModificationTimeSeconds int64 `json:"modificationTimeSeconds"` // .Time, when blog entry has been updated, in unix format. AllowViewHistory bool `json:"allowViewHistory"` // .If true, you can view any specific revision of the blog entry. Tags []string `json:"tags"` // .tags Rating int64 `json:"rating"` // .rating }
type Comment ¶
type Comment struct { ID int64 `json:"id"` // . ID CreationTimeSeconds int64 `json:"creationTimeSeconds"` // . Time, when comment was created, in unix format. CommentatorHandle string `json:"commentatorHandle"` // . CommentatorHandle Locale string `json:"locale"` // . Locale Text string `json:"text"` // . Text ParentCommentID int64 `json:"parentCommentId"` // . Can be absent. Rating int64 `json:"rating"` // . Rating }
Click to show internal directories.
Click to hide internal directories.