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

nl.reinkrul.nuts.vdr.Service Maven / Gradle / Ivy

/*
 * Nuts Verifiable Data Registry API spec
 * API specification for the Verifiable Data Registry
 *
 * 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.vdr;

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;

/**
 * A service supported by a DID subject.
 */
@ApiModel(description = "A service supported by a DID subject.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:34.319584+02:00[Europe/Amsterdam]")
public class Service {
  public static final String SERIALIZED_NAME_ID = "id";
  @SerializedName(SERIALIZED_NAME_ID)
  private String id;

  public static final String SERIALIZED_NAME_TYPE = "type";
  @SerializedName(SERIALIZED_NAME_TYPE)
  private String type;

  public static final String SERIALIZED_NAME_SERVICE_ENDPOINT = "serviceEndpoint";
  @SerializedName(SERIALIZED_NAME_SERVICE_ENDPOINT)
  private Object serviceEndpoint = null;


  public Service id(String id) {
    
    this.id = id;
    return this;
  }

   /**
   * ID of the service.
   * @return id
  **/
  @ApiModelProperty(required = true, value = "ID of the service.")

  public String getId() {
    return id;
  }


  public void setId(String id) {
    this.id = id;
  }


  public Service type(String type) {
    
    this.type = type;
    return this;
  }

   /**
   * The type of the endpoint.
   * @return type
  **/
  @ApiModelProperty(required = true, value = "The type of the endpoint.")

  public String getType() {
    return type;
  }


  public void setType(String type) {
    this.type = type;
  }


  public Service serviceEndpoint(Object serviceEndpoint) {
    
    this.serviceEndpoint = serviceEndpoint;
    return this;
  }

   /**
   * Either a URI or a complex object.
   * @return serviceEndpoint
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(required = true, value = "Either a URI or a complex object.")

  public Object getServiceEndpoint() {
    return serviceEndpoint;
  }


  public void setServiceEndpoint(Object serviceEndpoint) {
    this.serviceEndpoint = serviceEndpoint;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Service service = (Service) o;
    return Objects.equals(this.id, service.id) &&
        Objects.equals(this.type, service.type) &&
        Objects.equals(this.serviceEndpoint, service.serviceEndpoint);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, type, serviceEndpoint);
  }

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