Show / Hide Table of Contents

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 Source

Address

Address of the venue

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

FoursquareId

Optional. Foursquare identifier of the venue

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

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
| Improve this Doc View Source

Location

Venue location

Declaration
[JsonProperty(PropertyName = "location")]
public Location Location { get; set; }
Property Value
Type Description
Location
| Improve this Doc View Source

Title

Name of the venue

Declaration
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX