1package anaconda
2
3type ListResponse struct {
4	PreviousCursor int    `json:"previous_cursor"`
5	NextCursor     int    `json:"next_cursor"`
6	Lists          []List `json:"lists"`
7}
8
9type AddUserToListResponse struct {
10	Users []User `json:"users"`
11}
12
13type List struct {
14	Slug            string `json:"slug"`
15	Name            string `json:"name"`
16	URL             string `json:"uri"`
17	CreatedAt       string `json:"created_at"`
18	Id              int64  `json:"id"`
19	SubscriberCount int64  `json:"subscriber_count"`
20	MemberCount     int64  `json:"member_count"`
21	Mode            string `json:"mode"`
22	FullName        string `json:"full_name"`
23	Description     string `json:"description"`
24	User            User   `json:"user"`
25	Following       bool   `json:"following"`
26}
27