toXdr method

XdrTimeBounds toXdr()

Creates a XdrTimeBounds object from this time bounds.

Implementation

XdrTimeBounds toXdr() {
  XdrUint64 minTime = XdrUint64(_mMinTime);
  XdrUint64 maxTime = XdrUint64(_mMaxTime);
  XdrTimeBounds timeBounds = XdrTimeBounds(minTime, maxTime);
  return timeBounds;
}