public boolean equals()

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


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

            if (obj instanceof Bot == false)
                return false;
            Bot other = (Bot) obj;
            if (other.getName() == null ^ this.getName() == null)
                return false;
            if (other.getName() != null && other.getName().equals(this.getName()) == false)
                return false;
            if (other.getAlias() == null ^ this.getAlias() == null)
                return false;
            if (other.getAlias() != null && other.getAlias().equals(this.getAlias()) == false)
                return false;
            if (other.getVersion() == null ^ this.getVersion() == null)
                return false;
            if (other.getVersion() != null && other.getVersion().equals(this.getVersion()) == false)
                return false;
            return true;
        }