Layer 224
constructor
inputReplyToStory#5881323a peer:InputPeer story_id:int = InputReplyTo;

Parameters

Name Type Description
Peer InputPeer Sender of the story
StoryId int ID of the story to reply to.

Returns

InputReplyTo

Gogram Example

// Creating InputReplyToStory constructor
obj := &tg.InputReplyToStory{
    Peer: &tg.InputPeerUser{UserID: int64(777000)},
    StoryId: 42,
}