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

net.finmath.smartcontract.model.RefinitivMarketDataKey Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package net.finmath.smartcontract.model;

import java.net.URI;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import org.openapitools.jackson.nullable.JsonNullable;
import java.time.OffsetDateTime;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;
import io.swagger.v3.oas.annotations.media.Schema;


import java.util.*;
import jakarta.annotation.Generated;

/**
 * RefinitivMarketDataKey
 */

@JsonTypeName("RefinitivMarketData_Key")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-12-05T10:54:28.421239+01:00[Europe/Berlin]")
public class RefinitivMarketDataKey {

  @JsonProperty("Service")
  private String service;

  @JsonProperty("Name")
  private String name;

  public RefinitivMarketDataKey service(String service) {
    this.service = service;
    return this;
  }

  /**
   * Get service
   * @return service
  */
  
  @Schema(name = "Service", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
  public String getService() {
    return service;
  }

  public void setService(String service) {
    this.service = service;
  }

  public RefinitivMarketDataKey name(String name) {
    this.name = name;
    return this;
  }

  /**
   * Get name
   * @return name
  */
  
  @Schema(name = "Name", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RefinitivMarketDataKey refinitivMarketDataKey = (RefinitivMarketDataKey) o;
    return Objects.equals(this.service, refinitivMarketDataKey.service) &&
        Objects.equals(this.name, refinitivMarketDataKey.name);
  }

  @Override
  public int hashCode() {
    return Objects.hash(service, name);
  }

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