Fix message wrapper type in documentation

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2022-11-23 02:25:27 +01:00 committed by Marcel Hibbe
parent b4d4cdf219
commit 48a64fde7e
No known key found for this signature in database
GPG key ID: C793F8B59F43CE7B

View file

@ -34,7 +34,7 @@ import kotlinx.android.parcel.TypeParceler
data class Signaling(
@JsonField(name = ["type"])
var type: String? = null,
/** can be NCMessageWrapper or List<HashMap<String,String>> */
/** can be NCSignalingMessage (encoded as a String) or List<Map<String, Object>> */
@JsonField(name = ["data"])
var messageWrapper: Any? = null
) : Parcelable {