com.afrozaar.wordpress.wpapi.v2.model.Title Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wp-api-v2-client-java Show documentation
Show all versions of wp-api-v2-client-java Show documentation
A Java client implementation to the WordPress WP-API v2 plugin.
package com.afrozaar.wordpress.wpapi.v2.model;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import javax.annotation.Generated;
import java.util.HashMap;
import java.util.Map;
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"raw",
"rendered"
})
public class Title {
@JsonProperty("raw")
private String raw;
@JsonProperty("rendered")
private String rendered;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* @return The raw
*/
@JsonProperty("raw")
public String getRaw() {
return raw;
}
/**
* @param raw The raw
*/
@JsonProperty("raw")
public void setRaw(String raw) {
this.raw = raw;
}
/**
* @return The rendered
*/
@JsonProperty("rendered")
public String getRendered() {
return rendered;
}
/**
* @param rendered The rendered
*/
@JsonProperty("rendered")
public void setRendered(String rendered) {
this.rendered = rendered;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy