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

no.ks.fiks.innsyn.schema.ekstern.domain.FakturaLenkeV1 Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version

package no.ks.fiks.innsyn.schema.ekstern.domain;

import javax.annotation.processing.Generated;
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 url for lenke
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "tittel",
    "url"
})
@Generated("jsonschema2pojo")
public class FakturaLenkeV1 {

    /**
     * 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("url") @JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters") private String url; /** * 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 FakturaLenkeV1 withTittel(String tittel) { this.tittel = tittel; return this; } /** * String Not Blank *

* Streng som ikke består av kun whitespace characters * (Required) * */ @JsonProperty("url") public String getUrl() { return url; } /** * String Not Blank *

* Streng som ikke består av kun whitespace characters * (Required) * */ @JsonProperty("url") public void setUrl(String url) { this.url = url; } public FakturaLenkeV1 withUrl(String url) { this.url = url; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(FakturaLenkeV1 .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("url"); sb.append('='); sb.append(((this.url == null)?"":this.url)); 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.url == null)? 0 :this.url.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof FakturaLenkeV1) == false) { return false; } FakturaLenkeV1 rhs = ((FakturaLenkeV1) other); return (((this.tittel == rhs.tittel)||((this.tittel!= null)&&this.tittel.equals(rhs.tittel)))&&((this.url == rhs.url)||((this.url!= null)&&this.url.equals(rhs.url)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy