
com.googlecode.googleplus.model.person.PersonUrls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-plus-java-api Show documentation
Show all versions of google-plus-java-api Show documentation
A Java client for the Google+ API
The newest version!
package com.googlecode.googleplus.model.person;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PersonUrls {
private String type;
private boolean primary;
private String value;
private String label;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public boolean getPrimary() {
return primary;
}
public void setPrimary(boolean primary) {
this.primary = primary;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy