ChatShared

@Serializable
data class ChatShared(    val requestId: RequestId,     val chatId: ChatId,     val title: String? = null,     val username: Username? = null,     val photo: PhotoFile? = null) : ChatSharedRequest

Constructors

Link copied to clipboard
constructor(requestId: RequestId, chatId: ChatId, title: String? = null, username: Username? = null, photo: PhotoFile? = null)

Properties

Link copied to clipboard
@SerialName(value = "chat_id")
open override val chatId: ChatId
Link copied to clipboard
@SerialName(value = "photo")
val photo: PhotoFile? = null
Link copied to clipboard
@SerialName(value = "request_id")
open override val requestId: RequestId
Link copied to clipboard
@SerialName(value = "title")
val title: String? = null
Link copied to clipboard
@SerialName(value = "username")
val username: Username? = null