InputWebFileLocation

class pyrogram.raw.types.InputWebFileLocation

Location of a remote HTTP(s) file

Constructor of InputWebFileLocation.

Details:
  • Layer: 223

  • ID: C239D686

Parameters:
  • url (str) – HTTP URL of file

  • access_hash (int 64-bit) – Access hash

TL Schema

inputWebFileLocation#c239d686
url:string
access_hash:long

= InputWebFileLocation

Parameter Tree

InputWebFileLocation
├── urlstring
└── access_hashlong

Example

InputWebFileLocation(
    url="https://google.com",
    access_hash=0,
)