UpdateStoryID

class pyrogram.raw.types.UpdateStoryID

A story was successfully uploaded.

Constructor of Update.

Details:
  • Layer: 223

  • ID: 1BF335B9

Parameters:
  • id (int 32-bit) – The id that was attributed to the story.

  • random_id (int 64-bit) – The random_id that was passed to stories.sendStory.

TL Schema

updateStoryID#1bf335b9
id:int
random_id:long

= Update

Parameter Tree

UpdateStoryID
├── idint
└── random_idlong

Example

UpdateStoryID(
    id=0,
    random_id=app.rnd_id(),
)