
com.googlecode.googleplus.model.moments.Moment 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.moments;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Moment {
private MomentType type;
private Target target;
private Result result;
public MomentType getType() {
return type;
}
public void setType(MomentType type) {
this.type = type;
}
public Target getTarget() {
return target;
}
public void setTarget(Target target) {
this.target = target;
}
public Result getResult() {
return result;
}
public void setResult(Result result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy