package main type Conversation struct { ID string `json:"id"` // id Title string `json:"title"` // title DM bool `json:"dm"` // dm Picture string `json:"picture"` // picture } type User struct { ID string `json:"id"` // id Username string `json:"username"` // username Bio string `json:"bio"` // bio ProfilePic string `json:"profile_pic"` // profile_pic FirstName string `json:"first_name"` // first_name LastName string `json:"last_name"` // last_name PhoneNumber string `json:"phone_number"` // phone_number }