File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
android/library/src/main/java/io/appwrite/models Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ open class RealtimeResponse(
2323data class RealtimeResponseEvent<T >(
2424 val events: Collection<String >,
2525 val channels: Collection<String >,
26- val timestamp: Long ,
26+ val timestamp: String ,
2727 var payload: T
2828)
2929
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ public class RealtimeCallback {
2424public class RealtimeResponseEvent {
2525 public let events: [String]?
2626 public let channels: [String]?
27- public let timestamp: Int64 ?
27+ public let timestamp: String ?
2828 public var payload: [String: Any]?
2929
3030 init(
3131 events: [String],
3232 channels: [String],
33- timestamp: Int64 ,
33+ timestamp: String ,
3434 payload: [String: Any]
3535 ) {
3636 self.events = events
You can’t perform that action at this time.
0 commit comments