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 SourceFrom
User who sent the query
Declaration
[JsonProperty(PropertyName = "from", Required = Required.Always)]
public User From { get; set; }
Property Value
Type | Description |
---|---|
User |
Id
Unique query identifier
Declaration
[JsonProperty(PropertyName = "id", Required = Required.Always)]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
InvoicePayload
Bot specified invoice payload
Declaration
[JsonProperty(PropertyName = "invoice_payload")]
public string InvoicePayload { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ShippingAddress
User specified shipping address
Declaration
[JsonProperty(PropertyName = "shipping_address")]
public ShippingAddress ShippingAddress { get; set; }
Property Value
Type | Description |
---|---|
ShippingAddress |