StatsAbsValueAndPrev

class pyrogram.raw.base.StatsAbsValueAndPrev

Channel statistics value pair

Constructors:

This base type has 1 constructor available.

StatsAbsValueAndPrev

Statistics value couple; initial and final value for period of time currently in consideration

TL Schema

statsAbsValueAndPrev#cb43acde
current:double
previous:double

= StatsAbsValueAndPrev

Parameter Tree

StatsAbsValueAndPrev
├── currentdouble
└── previousdouble

Example

StatsAbsValueAndPrev(
    current=0.0,
    previous=0.0,
)