net.finmath.smartcontract.model.InitialSettlementRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
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 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;
/**
* InitialSettlementRequest
*/
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-12-05T10:54:28.421239+01:00[Europe/Berlin]")
public class InitialSettlementRequest {
@JsonProperty("tradeData")
private String tradeData;
public InitialSettlementRequest tradeData(String tradeData) {
this.tradeData = tradeData;
return this;
}
/**
* Get tradeData
* @return tradeData
*/
@NotNull
@Schema(name = "tradeData", requiredMode = Schema.RequiredMode.REQUIRED)
public String getTradeData() {
return tradeData;
}
public void setTradeData(String tradeData) {
this.tradeData = tradeData;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InitialSettlementRequest initialSettlementRequest = (InitialSettlementRequest) o;
return Objects.equals(this.tradeData, initialSettlementRequest.tradeData);
}
@Override
public int hashCode() {
return Objects.hash(tradeData);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InitialSettlementRequest {\n");
sb.append(" tradeData: ").append(toIndentedString(tradeData)).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