Raw.stats.GetMessagePublicForwards
Obtains a list of messages, indicating to which other public channels was a channel message forwarded. will return a list of messages with peerId equal to the public channel to which this message was forwarded.
stats.getMessagePublicForwards#5f150144 channel:InputChannel msg_id:int offset:string limit:int = stats.PublicForwards;
export namespace Raw {
export namespace stats {
export class GetMessagePublicForwards {
constructor(params: {
channel: Raw.TypeInputChannel;
msgId: number;
offset: string;
limit: number;
}) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0x5f150144
Property
channel
: Raw.TypeInputChannelSource channel
msgId
: numberSource message id
offset
: stringOffset for pagination, empty string on first call, then use the nextOffset field of the returned constructor (if present, otherwise no more results are available).
limit
: numberMaximum number of results to return, see pagination