Photo¶
- class ftmgram.types.Photo(*, client: Client = None, file_id: str, file_unique_id: str, width: int, height: int, file_size: int, date: datetime, ttl_seconds: int = None, thumbs: List[Thumbnail] = None)¶
A Photo.
- Parameters:
file_id (
str) – Identifier for this file, which can be used to download or reuse the file.file_unique_id (
str) – Unique identifier for this file, which is supposed to be the same over time and for different accounts. Can’t be used to download or reuse the file.width (
int) – Photo width.height (
int) – Photo height.file_size (
int) – File size.date (
datetime) – Date the photo was sent.ttl_seconds (
int, optional) – Time-to-live seconds, for secret photos.thumbs (List of
Thumbnail, optional) – Available thumbnails of this photo.