You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Unique deep-linking parameter that can be used to generate this invoice when used as a start parameter
807
+
* Unique deep-linking parameter.
808
+
* If left empty, forwarded copies of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice.
809
+
* If non-empty, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter
806
810
*/
807
-
start_parameter: string
811
+
start_parameter?: string
808
812
809
813
/**
810
814
* Three-letter ISO 4217 currency code, see more on currencies
* The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double).
825
+
* For example, for a maximum tip of US$ 1.45 pass max_tip_amount = 145.
826
+
* Defaults to 0
827
+
*/
828
+
max_tip_amount: number
829
+
830
+
/**
831
+
* A JSON-serialized array of suggested amounts of tips in the smallest units of the currency (integer, not float/double).
832
+
* At most 4 suggested tip amounts can be specified.
833
+
* The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed max_tip_amount.
834
+
*/
835
+
suggested_tip_amounts: number[]
836
+
819
837
/**
820
838
* URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.
0 commit comments