/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.content; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Specifies a start date and end date for when associated object is on the live site, if is set to .If is set to ignores this property. */ @JsonIgnoreProperties(ignoreUnknown = true) public class ActiveDateRange implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The end of the active date range for this document */ protected DateTime endDate; public DateTime getEndDate() { return this.endDate; } public void setEndDate(DateTime endDate) { this.endDate = endDate; } /** * The beginning of the active date range of this document */ protected DateTime startDate; public DateTime getStartDate() { return this.startDate; } public void setStartDate(DateTime startDate) { this.startDate = startDate; } }