no.ks.fiks.innsyn.schema.ekstern.domain.FakturaPdfV1 Maven / Gradle / Ivy
Show all versions of innsyn-json-schema Show documentation
package no.ks.fiks.innsyn.schema.ekstern.domain;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Tittel og lenke til faktura-PDF
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"tittel",
"lenke"
})
public class FakturaPdfV1 {
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("tittel")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters")
private String tittel;
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("lenke")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters")
private String lenke;
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("tittel")
public String getTittel() {
return tittel;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("tittel")
public void setTittel(String tittel) {
this.tittel = tittel;
}
public FakturaPdfV1 withTittel(String tittel) {
this.tittel = tittel;
return this;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("lenke")
public String getLenke() {
return lenke;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("lenke")
public void setLenke(String lenke) {
this.lenke = lenke;
}
public FakturaPdfV1 withLenke(String lenke) {
this.lenke = lenke;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(FakturaPdfV1 .class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("tittel");
sb.append('=');
sb.append(((this.tittel == null)?"":this.tittel));
sb.append(',');
sb.append("lenke");
sb.append('=');
sb.append(((this.lenke == null)?"":this.lenke));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.tittel == null)? 0 :this.tittel.hashCode()));
result = ((result* 31)+((this.lenke == null)? 0 :this.lenke.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof FakturaPdfV1) == false) {
return false;
}
FakturaPdfV1 rhs = ((FakturaPdfV1) other);
return (((this.tittel == rhs.tittel)||((this.tittel!= null)&&this.tittel.equals(rhs.tittel)))&&((this.lenke == rhs.lenke)||((this.lenke!= null)&&this.lenke.equals(rhs.lenke))));
}
}