Answer Shipping Query Request
data class AnswerShippingQueryRequest(shippingQueryId: String, ok: Boolean, shippingOptions: List<ShippingOption>, errorMessage: String?)
Content copied to clipboard
Request body for answerShippingQuery
Parameters
shippingQueryId
Unique identifier for the query to be answered
ok
Specify True if delivery to the specified address is possible and False if there are any problems (for example, if delivery to the specified address is not possible)
shippingOptions
Required if ok is True. A JSON-serialized array of available shipping options.
errorMessage
Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. "Sorry, delivery to your desired address is unavailable'). Telegram will display this message to the user.
Constructors
AnswerShippingQueryRequest
Link copied to clipboard
fun AnswerShippingQueryRequest(shippingQueryId: String, ok: Boolean, shippingOptions: List<ShippingOption> = emptyList(), errorMessage: String? = null)
Content copied to clipboard
Unique identifier for the query to be answered
Functions
component1
Link copied to clipboard
component2
Link copied to clipboard
component3
Link copied to clipboard
component4
Link copied to clipboard
copy
Link copied to clipboard
fun copy(shippingQueryId: String, ok: Boolean, shippingOptions: List<ShippingOption> = emptyList(), errorMessage: String? = null): AnswerShippingQueryRequest
Content copied to clipboard
Properties
errorMessage
Link copied to clipboard
shippingOptions
Link copied to clipboard
shippingQueryId
Link copied to clipboard