directmessage.go 593 B

123456789101112131415
  1. package anaconda
  2. type DirectMessage struct {
  3. CreatedAt string `json:"created_at"`
  4. Entities Entities `json:"entities"`
  5. Id int64 `json:"id"`
  6. IdStr string `json:"id_str"`
  7. Recipient User `json:"recipient"`
  8. RecipientId int64 `json:"recipient_id"`
  9. RecipientScreenName string `json:"recipient_screen_name"`
  10. Sender User `json:"sender"`
  11. SenderId int64 `json:"sender_id"`
  12. SenderScreenName string `json:"sender_screen_name"`
  13. Text string `json:"text"`
  14. }