Raw.payments.StarsStatus
Info about the current telegram star balance and transaction history.
payments.starsStatus#8cf4ee60 flags:# balance:long history:Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
export namespace Raw {
export namespace payments {
export class StarsStatus {
constructor(params: {
balance: bigint;
history: Array<Raw.TypeStarsTransaction>;
nextOffset?: string;
chats: Array<Raw.TypeChat>;
users: Array<Raw.TypeUser>;
}) {}
}
}
}
🚫
This is a types constructor, you can’t use it as method when call invoke.
Layer: 185
Constructor ID: 0x8cf4ee60
Property
balance
: bigintCurrent telegram star balance.
history
: Array of Raw.TypeStarsTransactionList of telegram star transactions (partial if nextOffset is set).
nextOffset
: string or undefinedOffset to use to fetch more transactions from the transaction history using payments.getstarstransactions.
chats
: Array of Raw.TypeChatChats mentioned in history.
users
: Array of Raw.TypeUserUsers mentioned in history.