Clean doc

This commit is contained in:
Benoit Marty 2021-05-26 15:33:08 +02:00 committed by Benoit Marty
parent 2bea2de0c5
commit 535f3ad02d
1 changed files with 6 additions and 6 deletions

View File

@ -22,16 +22,16 @@ import org.matrix.android.sdk.api.util.JsonDict
@JsonClass(generateAdapter = true) @JsonClass(generateAdapter = true)
data class ThirdPartyUser( data class ThirdPartyUser(
/* /**
Required. A Matrix User ID represting a third party user. * Required. A Matrix User ID representing a third party user.
*/ */
@Json(name = "userid") val userId: String, @Json(name = "userid") val userId: String,
/* /**
Required. The protocol ID that the third party location is a part of. * Required. The protocol ID that the third party location is a part of.
*/ */
@Json(name = "protocol") val protocol: String, @Json(name = "protocol") val protocol: String,
/* /**
Required. Information used to identify this third party location. * Required. Information used to identify this third party location.
*/ */
@Json(name = "fields") val fields: JsonDict @Json(name = "fields") val fields: JsonDict
) )