public boolean equals()

in library/src/main/java/com/theguardian/bridget/thrift/Videos.java [985:1001]


    public boolean equals(insertVideos_args that) {
      if (that == null)
        return false;
      if (this == that)
        return true;

      boolean this_present_videoSlots = true && this.isSetVideoSlots();
      boolean that_present_videoSlots = true && that.isSetVideoSlots();
      if (this_present_videoSlots || that_present_videoSlots) {
        if (!(this_present_videoSlots && that_present_videoSlots))
          return false;
        if (!this.videoSlots.equals(that.videoSlots))
          return false;
      }

      return true;
    }