Show / Hide Table of Contents

Class ShippingQuery

This object contains information about an incoming shipping query.

Inheritance
System.Object
ShippingQuery
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TelegramBotApi.Types.Payment
Assembly: TelegramBotApi.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn, ItemNullValueHandling = NullValueHandling.Ignore)]
public class ShippingQuery

Properties

| Improve this Doc View Source

From

User who sent the query

Declaration
[JsonProperty(PropertyName = "from", Required = Required.Always)]
public User From { get; set; }
Property Value
Type Description
User
| Improve this Doc View Source

Id

Unique query identifier

Declaration
[JsonProperty(PropertyName = "id", Required = Required.Always)]
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

InvoicePayload

Bot specified invoice payload

Declaration
[JsonProperty(PropertyName = "invoice_payload")]
public string InvoicePayload { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ShippingAddress

User specified shipping address

Declaration
[JsonProperty(PropertyName = "shipping_address")]
public ShippingAddress ShippingAddress { get; set; }
Property Value
Type Description
ShippingAddress
  • Improve this Doc
  • View Source
Back to top Generated by DocFX