StatsAbsValueAndPrev

class pyrogram.raw.types.StatsAbsValueAndPrev

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

Constructor of StatsAbsValueAndPrev.

Details:
  • Layer: 223

  • ID: CB43ACDE

Parameters:
  • current (float 64-bit) – Current value

  • previous (float 64-bit) – Previous value

TL Schema

statsAbsValueAndPrev#cb43acde
current:double
previous:double

= StatsAbsValueAndPrev

Parameter Tree

StatsAbsValueAndPrev
├── currentdouble
└── previousdouble

Example

StatsAbsValueAndPrev(
    current=0.0,
    previous=0.0,
)