We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FreeBusyDateModel is returning null. Need to add Cloanable.
public class FreeBusyDateModel implements Serializable, Cloneable {
@JsonProperty("time") private String time; @JsonProperty("tzid") private String tzid; private FreeBusyDateModel(String time, String tzid) { this.time = time; this.tzid = tzid; } public static FreeBusyDateModel of(String time) { return new FreeBusyDateModel(time, null); } public static FreeBusyDateModel of(String time, String tzid) { return new FreeBusyDateModel(time, tzid); } public Object clone() throws CloneNotSupportedException { return super.clone(); }
}
The text was updated successfully, but these errors were encountered:
Biacode#57 issue- cloanable not added in model class - FreeBusyDateModel
55fae95
added cloanable, setters and getters for time and tzid
No branches or pull requests
FreeBusyDateModel is returning null. Need to add Cloanable.
public class FreeBusyDateModel implements Serializable, Cloneable {
}
The text was updated successfully, but these errors were encountered: