MadelineProto/old_docs/API_docs_v27/constructors/geoChat.md

1.2 KiB

title description
geoChat geoChat attributes, type and example

Constructor: geoChat

Back to constructors index

Attributes:

Name Type Required
id int Yes
access_hash long Yes
title string Yes
address string Yes
venue string Yes
geo GeoPoint Yes
photo ChatPhoto Yes
participants_count int Yes
date int Yes
checked_in Bool Yes
version int Yes

Type: Chat

Example:

$geoChat = ['_' => 'geoChat', 'id' => int, 'access_hash' => long, 'title' => string, 'address' => string, 'venue' => string, 'geo' => GeoPoint, 'photo' => ChatPhoto, 'participants_count' => int, 'date' => int, 'checked_in' => Bool, 'version' => int, ];

Or, if you're into Lua:

geoChat={_='geoChat', id=int, access_hash=long, title=string, address=string, venue=string, geo=GeoPoint, photo=ChatPhoto, participants_count=int, date=int, checked_in=Bool, version=int, }