Interface PublicForwards

Represents a list of public forwards and reposts as a story of a message or a story.

interface PublicForwards {
    @type: "publicForwards";
    forwards: PublicForward[];
    next_offset: string;
    total_count: number;
}

Properties

@type: "publicForwards"
forwards: PublicForward[]

List of found public forwards and reposts.

next_offset: string

The offset for the next request. If empty, then there are no more results.

total_count: number

Approximate total number of messages and stories found.