-
Notifications
You must be signed in to change notification settings - Fork 3
/
post.go
52 lines (46 loc) · 1.55 KB
/
post.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package patreon
var (
// PostDefaultIncludes specifies default includes for Post.
PostDefaultIncludes = []string{"campaign", "user"}
// PostFields is all fields in the Post Attributes struct
PostFields = getObjectFields(Post{}.Attributes)
)
// Post is content posted by a creator on a campaign page.
type Post struct {
Type string `json:"type"`
ID string `json:"id"`
Attributes PostAttributes `json:"attributes"`
Relationships struct {
User *UserRelationship `json:"user,omitempty"`
Campaign *CampaignRelationship `json:"campaign,omitempty"`
} `json:"relationships"`
}
// PostAttributes is the attributes struct for Post
type PostAttributes struct {
AppID int `json:"app_id"`
AppStatus string `json:"app_status"`
Content string `json:"content"`
EmbedData interface{} `json:"embed_data"`
EmbedURL string `json:"embed_url"`
IsPaid bool `json:"is_paid"`
IsPublic bool `json:"is_public"`
PublishedAt NullTime `json:"published_at"`
Title string `json:"title"`
URL string `json:""`
}
// PostResponse wraps Patreon's fetch benefit API response
type PostResponse struct {
Data Post `json:"data"`
Included Includes `json:"included"`
Links struct {
Self string `json:"self"`
} `json:"links"`
}
// PostsResponse wraps Patreon's fetch benefit API response
type PostsResponse struct {
Data []Post `json:"data"`
Included Includes `json:"included"`
Links struct {
Self string `json:"self"`
} `json:"links"`
}