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

nl.reinkrul.nuts.didman.CompoundServiceProperties 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;

/**
 * A creation request for a compound service that contains endpoints. The endpoints can be either absolute endpoints or references.
 */
@ApiModel(description = "A creation request for a compound service that contains endpoints. The endpoints can be either absolute endpoints or references.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:35.164179+02:00[Europe/Amsterdam]")
public class CompoundServiceProperties {
  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;


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

   /**
   * type of the endpoint. May be freely choosen.
   * @return type
  **/
  @ApiModelProperty(required = true, value = "type of the endpoint. May be freely choosen.")

  public String getType() {
    return type;
  }


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


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

   /**
   * A map containing service references and/or endpoints.
   * @return serviceEndpoint
  **/
  @ApiModelProperty(example = "{\"auth\":\"did:nuts:1312321/serviceEndpoint?type=auth\"}", required = true, value = "A map containing service references and/or endpoints.")

  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;
    }
    CompoundServiceProperties compoundServiceProperties = (CompoundServiceProperties) o;
    return Objects.equals(this.type, compoundServiceProperties.type) &&
        Objects.equals(this.serviceEndpoint, compoundServiceProperties.serviceEndpoint);
  }

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

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CompoundServiceProperties {\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