toXdr method
Creates a XdrTimeBounds object from this time bounds.
Implementation
XdrTimeBounds toXdr() {
XdrTimeBounds timeBounds = XdrTimeBounds();
XdrUint64 minTime = XdrUint64();
XdrUint64 maxTime = XdrUint64();
minTime.uint64 = _mMinTime;
maxTime.uint64 = _mMaxTime;
timeBounds.minTime = minTime;
timeBounds.maxTime = maxTime;
return timeBounds;
}