nitypes.bintime.TimeValueTuple ============================== .. py:class:: nitypes.bintime.TimeValueTuple Bases: :py:obj:`NamedTuple` A named tuple containing the whole seconds and fractional seconds parts of a time value. .. py:attribute:: whole_seconds :type: int The whole seconds portion of a binary time value. This should be an int64. .. py:attribute:: fractional_seconds :type: int The fractional seconds portion of a binary time value. This should be a uint64. .. py:method:: from_cvi(lsb: int, msb: int) -> TimeValueTuple :staticmethod: Create a :class:`TimeValueTuple` from a ``CVIAbsoluteTime`` representation. .. py:method:: to_cvi() -> tuple[int, int] Return a representation as ``CVIAbsoluteTime``.