typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
25 lines (24 loc) • 534 B
TypeScript
import { User, ShippingAddress } from './';
/**
* ## ShippingQuery
* This object contains information about an incoming shipping query.
* @see https://core.telegram.org/bots/api#shippingquery
*/
export type ShippingQuery = {
/**
* Unique query identifier
*/
id: string;
/**
* User who sent the query
*/
from: User;
/**
* Bot-specified invoice payload
*/
invoice_payload: string;
/**
* User specified shipping address
*/
shipping_address: ShippingAddress;
};