All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.reinkrul.nuts.vcr.v2.SearchVCRequest Maven / Gradle / Ivy

/*
 * Nuts Verifiable Credential API spec
 * API specification for common operations on Verifiable credentials. It allows the three roles, issuer, holder and verifier to issue, revoke, search, present and verify credentials. 
 *
 * The version of the OpenAPI document: 2.0.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package nl.reinkrul.nuts.vcr.v2;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import nl.reinkrul.nuts.vcr.v2.SearchOptions;

/**
 * request body for searching VCs
 */
@ApiModel(description = "request body for searching VCs")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:34.811142+02:00[Europe/Amsterdam]")
public class SearchVCRequest {
  public static final String SERIALIZED_NAME_SEARCH_OPTIONS = "searchOptions";
  @SerializedName(SERIALIZED_NAME_SEARCH_OPTIONS)
  private SearchOptions searchOptions;

  public static final String SERIALIZED_NAME_QUERY = "query";
  @SerializedName(SERIALIZED_NAME_QUERY)
  private Object query;


  public SearchVCRequest searchOptions(SearchOptions searchOptions) {
    
    this.searchOptions = searchOptions;
    return this;
  }

   /**
   * Get searchOptions
   * @return searchOptions
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public SearchOptions getSearchOptions() {
    return searchOptions;
  }


  public void setSearchOptions(SearchOptions searchOptions) {
    this.searchOptions = searchOptions;
  }


  public SearchVCRequest query(Object query) {
    
    this.query = query;
    return this;
  }

   /**
   * A partial VerifiableCredential in JSON-LD format. Each field will be used to match credentials against. All fields MUST be present.
   * @return query
  **/
  @ApiModelProperty(required = true, value = "A partial VerifiableCredential in JSON-LD format. Each field will be used to match credentials against. All fields MUST be present.")

  public Object getQuery() {
    return query;
  }


  public void setQuery(Object query) {
    this.query = query;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SearchVCRequest searchVCRequest = (SearchVCRequest) o;
    return Objects.equals(this.searchOptions, searchVCRequest.searchOptions) &&
        Objects.equals(this.query, searchVCRequest.query);
  }

  @Override
  public int hashCode() {
    return Objects.hash(searchOptions, query);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class SearchVCRequest {\n");
    sb.append("    searchOptions: ").append(toIndentedString(searchOptions)).append("\n");
    sb.append("    query: ").append(toIndentedString(query)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy