| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2f6c94a commit 64a40c7
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,6 +29,13 @@ data class Phone ( | |||
| 29 | 29 | val userID: String, | |
| 30 | 30 | ) | |
| 31 | 31 | ||
| 32 | + data class Attachment ( | ||
| 33 | + @Json(name = "content_type") | ||
| 34 | + val contentType: String, | ||
| 35 | + | ||
| 36 | + val url: String | ||
| 37 | + ) | ||
| 38 | + | ||
| 32 | 39 | data class Message ( | |
| 33 | 40 | val contact: String, | |
| 34 | 41 | val content: String, | |
@@ -69,4 +76,6 @@ data class Message ( | |||
| 69 | 76 | ||
| 70 | 77 | @Json(name = "updated_at") | |
| 71 | 78 | val updatedAt: String | |
| 79 | + | ||
| 80 | + val attachments: List<Attachment>? = null | ||
| 72 | 81 | ) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments