public bool isEqual(CreateEventRec value) { if (this.getRequestID() != value.getRequestID()) { return(false); } if (this.getMaximumAllowedDuration() != value.getMaximumAllowedDuration()) { return(false); } if (!this.getCommandMessage().isEqual(value.getCommandMessage())) { return(false); } return(true); }
public bool isEqual(CreateEventRec value) { if (this.getRequestID() != value.getRequestID()) { return(false); } if (this.getEventType() != value.getEventType()) { return(false); } if (this.getRequestedPeriodicRate() != value.getRequestedPeriodicRate()) { return(false); } if (!this.getQueryMessage().isEqual(value.getQueryMessage())) { return(false); } return(true); }
public bool isEqual(CreateEventRec value) { if (this.getRequestID() != value.getRequestID()) { return false; } if (this.getMaximumAllowedDuration() != value.getMaximumAllowedDuration()) { return false; } if (!this.getCommandMessage().isEqual(value.getCommandMessage())) { return false; } return true; }
public bool isEqual(CreateEventRec value) { if (this.getRequestID() != value.getRequestID()) { return false; } if (this.getEventType() != value.getEventType()) { return false; } if (this.getRequestedPeriodicRate() != value.getRequestedPeriodicRate()) { return false; } if (!this.getQueryMessage().isEqual(value.getQueryMessage())) { return false; } return true; }