Class Venue
Represents a venue
Inheritance
System.Object
Venue
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
Assembly: TelegramBotApi.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn, ItemNullValueHandling = NullValueHandling.Ignore)]
public class Venue
Properties
| Improve this Doc View SourceAddress
Address of the venue
Declaration
[JsonProperty(PropertyName = "address")]
public string Address { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FoursquareId
Optional. Foursquare identifier of the venue
Declaration
[JsonProperty(PropertyName = "foursquare_id")]
public string FoursquareId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FoursquareType
Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
Declaration
[JsonProperty(PropertyName = "foursquare_type")]
public string FoursquareType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Location
Venue location
Declaration
[JsonProperty(PropertyName = "location")]
public Location Location { get; set; }
Property Value
Type | Description |
---|---|
Location |
Title
Name of the venue
Declaration
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |