We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f6c94a commit 64a40c7Copy full SHA for 64a40c7
1 file changed
android/app/src/main/java/com/httpsms/Models.kt
@@ -29,6 +29,13 @@ data class Phone (
29
val userID: String,
30
)
31
32
+data class Attachment (
33
+ @Json(name = "content_type")
34
+ val contentType: String,
35
+
36
+ val url: String
37
+)
38
39
data class Message (
40
val contact: String,
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
0 commit comments