MessageLocationContent

fun MessageLocationContent(    @Json(name = "msgtype") msgType: String = MessageType.MSGTYPE_LOCATION,     @Json(name = "body") body: String,     @Json(name = "geo_uri") geoUri: String,     @Json(name = "m.relates_to") relatesTo: RelationDefaultContent? = null,     @Json(name = "m.new_content") newContent: Content? = null,     @Json(name = "org.matrix.msc3488.location") unstableLocationInfo: LocationInfo? = null,     @Json(name = "m.location") locationInfo: LocationInfo? = null,     @Json(name = "org.matrix.msc3488.ts") unstableTimestampMillis: Long? = null,     @Json(name = "m.ts") timestampMillis: Long? = null,     @Json(name = "org.matrix.msc1767.text") unstableText: String? = null,     @Json(name = "m.text") text: String? = null,     @Json(name = "org.matrix.msc3488.asset") unstableLocationAsset: LocationAsset? = null,     @Json(name = "m.asset") locationAsset: LocationAsset? = null)