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

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

There is a newer version: 6.0.1
Show newest version
/*
 * 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.Revocation;
import nl.reinkrul.nuts.vcr.v2.VerifiableCredential;

/**
 * result of a Search operation.
 */
@ApiModel(description = "result of a Search operation.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:34.811142+02:00[Europe/Amsterdam]")
public class SearchVCResult {
  public static final String SERIALIZED_NAME_REVOCATION = "revocation";
  @SerializedName(SERIALIZED_NAME_REVOCATION)
  private Revocation revocation;

  public static final String SERIALIZED_NAME_VERIFIABLE_CREDENTIAL = "verifiableCredential";
  @SerializedName(SERIALIZED_NAME_VERIFIABLE_CREDENTIAL)
  private VerifiableCredential verifiableCredential;


  public SearchVCResult revocation(Revocation revocation) {
    
    this.revocation = revocation;
    return this;
  }

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

  public Revocation getRevocation() {
    return revocation;
  }


  public void setRevocation(Revocation revocation) {
    this.revocation = revocation;
  }


  public SearchVCResult verifiableCredential(VerifiableCredential verifiableCredential) {
    
    this.verifiableCredential = verifiableCredential;
    return this;
  }

   /**
   * Get verifiableCredential
   * @return verifiableCredential
  **/
  @ApiModelProperty(required = true, value = "")

  public VerifiableCredential getVerifiableCredential() {
    return verifiableCredential;
  }


  public void setVerifiableCredential(VerifiableCredential verifiableCredential) {
    this.verifiableCredential = verifiableCredential;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SearchVCResult searchVCResult = (SearchVCResult) o;
    return Objects.equals(this.revocation, searchVCResult.revocation) &&
        Objects.equals(this.verifiableCredential, searchVCResult.verifiableCredential);
  }

  @Override
  public int hashCode() {
    return Objects.hash(revocation, verifiableCredential);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class SearchVCResult {\n");
    sb.append("    revocation: ").append(toIndentedString(revocation)).append("\n");
    sb.append("    verifiableCredential: ").append(toIndentedString(verifiableCredential)).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