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

nl.reinkrul.nuts.didman.OrganizationSearchResult Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/*
 * Nuts DID Manager API spec
 * API specification for DID management helper APIs. The goal of this API is to help administrative interfaces to manage DIDs.
 *
 * The version of the OpenAPI document: 1.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.didman;

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.didman.DIDDocument;

/**
 * An entry resulting from the organozation search.
 */
@ApiModel(description = "An entry resulting from the organozation search.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:35.164179+02:00[Europe/Amsterdam]")
public class OrganizationSearchResult {
  public static final String SERIALIZED_NAME_ORGANIZATION = "organization";
  @SerializedName(SERIALIZED_NAME_ORGANIZATION)
  private Object organization;

  public static final String SERIALIZED_NAME_DID_DOCUMENT = "didDocument";
  @SerializedName(SERIALIZED_NAME_DID_DOCUMENT)
  private DIDDocument didDocument;


  public OrganizationSearchResult organization(Object organization) {
    
    this.organization = organization;
    return this;
  }

   /**
   * An object describing the found entity, modelled as a concept as specified by VCR's OpenAPI specification. See https://nuts-node.readthedocs.io/en/latest/pages/development/3-vc.html for examples on which concepts are supported and how they're structured. 
   * @return organization
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "An object describing the found entity, modelled as a concept as specified by VCR's OpenAPI specification. See https://nuts-node.readthedocs.io/en/latest/pages/development/3-vc.html for examples on which concepts are supported and how they're structured. ")

  public Object getOrganization() {
    return organization;
  }


  public void setOrganization(Object organization) {
    this.organization = organization;
  }


  public OrganizationSearchResult didDocument(DIDDocument didDocument) {
    
    this.didDocument = didDocument;
    return this;
  }

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

  public DIDDocument getDidDocument() {
    return didDocument;
  }


  public void setDidDocument(DIDDocument didDocument) {
    this.didDocument = didDocument;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    OrganizationSearchResult organizationSearchResult = (OrganizationSearchResult) o;
    return Objects.equals(this.organization, organizationSearchResult.organization) &&
        Objects.equals(this.didDocument, organizationSearchResult.didDocument);
  }

  @Override
  public int hashCode() {
    return Objects.hash(organization, didDocument);
  }

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