public boolean equals()

in mlserver-java-clients/RemoteExecutionApp/java-client/src/main/java/io/swagger/client/model/WebService.java [403:425]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    WebService webService = (WebService) o;
    return Objects.equals(this.name, webService.name) &&
        Objects.equals(this.version, webService.version) &&
        Objects.equals(this.versionPublishedBy, webService.versionPublishedBy) &&
        Objects.equals(this.creationTime, webService.creationTime) &&
        Objects.equals(this.snapshotId, webService.snapshotId) &&
        Objects.equals(this.runtimeType, webService.runtimeType) &&
        Objects.equals(this.initCode, webService.initCode) &&
        Objects.equals(this.code, webService.code) &&
        Objects.equals(this.description, webService.description) &&
        Objects.equals(this.operationId, webService.operationId) &&
        Objects.equals(this.inputParameterDefinitions, webService.inputParameterDefinitions) &&
        Objects.equals(this.outputParameterDefinitions, webService.outputParameterDefinitions) &&
        Objects.equals(this.outputFileNames, webService.outputFileNames) &&
        Objects.equals(this.myPermissionOnService, webService.myPermissionOnService);
  }