public boolean equals()

in aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/LexEvent.java [301:323]


        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;

            if (obj instanceof CurrentIntent == false)
                return false;
            CurrentIntent other = (CurrentIntent) obj;
            if (other.getName() == null ^ this.getName() == null)
                return false;
            if (other.getName() != null && other.getName().equals(this.getName()) == false)
                return false;
            if (other.getSlots() == null ^ this.getSlots() == null)
                return false;
            if (other.getSlots() != null && other.getSlots().equals(this.getSlots()) == false)
                return false;
            if (other.getConfirmationStatus() == null ^ this.getConfirmationStatus() == null)
                return false;
            if (other.getConfirmationStatus() != null && other.getConfirmationStatus().equals(this.getConfirmationStatus()) == false)
                return false;
            return true;
        }