mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-12-11 08:45:44 +00:00
fix of #917
This commit is contained in:
@@ -14,11 +14,11 @@ import kotlinx.serialization.Serializable
|
||||
@Serializable
|
||||
data class OrderInfo(
|
||||
@SerialName(nameField)
|
||||
val name: String?,
|
||||
val name: String? = null,
|
||||
@SerialName(phoneNumberField)
|
||||
val phoneNumber: String?,
|
||||
val phoneNumber: String? = null,
|
||||
@SerialName(emailField)
|
||||
val email: String?,
|
||||
val email: String? = null,
|
||||
@SerialName(shippingAddressField)
|
||||
val shippingAddress: ShippingAddress?
|
||||
val shippingAddress: ShippingAddress? = null
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user