net.minidev.ovh.api.telephony.OvhEasyHuntingTimeConditions Maven / Gradle / Ivy
package net.minidev.ovh.api.telephony;
import java.util.Date;
/**
* Easy hunting time conditions
*/
public class OvhEasyHuntingTimeConditions {
/**
* The time of the day when the extension will start to be executed
*
* canBeNull && readOnly
*/
public Date timeFrom;
/**
* The time of the day when the extension will stop to be executed
*
* canBeNull && readOnly
*/
public Date timeTo;
/**
* canBeNull && readOnly
*/
public Long conditionId;
/**
* The day of the week when the extension will be executed
*
* canBeNull && readOnly
*/
public OvhOvhPabxDialplanExtensionConditionTimeWeekDayEnum weekDay;
/**
* The policy of time condition
*
* canBeNull && readOnly
*/
public OvhTimeConditionsPolicyEnum policy;
}