public override int GetHashCode() { int hash = 1; if (lastExportCompleted_ != null) { hash ^= LastExportCompleted.GetHashCode(); } if (DueForNextRun != false) { hash ^= DueForNextRun.GetHashCode(); } return(hash); }
public void MergeFrom(AccountingTxnExportStatus other) { if (other == null) { return; } if (other.lastExportCompleted_ != null) { if (lastExportCompleted_ == null) { lastExportCompleted_ = new global::Google.Protobuf.WellKnownTypes.Timestamp(); } LastExportCompleted.MergeFrom(other.LastExportCompleted); } if (other.DueForNextRun != false) { DueForNextRun = other.DueForNextRun; } }