types.go
changeset 133 0085bcfc1131
parent 131 68ef6504637e
child 136 1af0a6199a93
equal deleted inserted replaced
132:639bbcddb4fe 133:0085bcfc1131
   105 	Status    *Status  `json:"status"`
   105 	Status    *Status  `json:"status"`
   106 }
   106 }
   107 
   107 
   108 // Relationship represents a Mastodon relationship entity
   108 // Relationship represents a Mastodon relationship entity
   109 type Relationship struct {
   109 type Relationship struct {
       
   110 	ID         int  `json:"id"`
   110 	Following  bool `json:"following"`
   111 	Following  bool `json:"following"`
   111 	FollowedBy bool `json:"followed_by"`
   112 	FollowedBy bool `json:"followed_by"`
   112 	Blocking   bool `json:"blocking"`
   113 	Blocking   bool `json:"blocking"`
   113 	Muting     bool `json:"muting"`
   114 	Muting     bool `json:"muting"`
   114 	Requested  bool `json:"requested"`
   115 	Requested  bool `json:"requested"`