Class Schedule
- java.lang.Object
-
- org.zendesk.client.v2.model.schedules.Schedule
-
- All Implemented Interfaces:
Serializable
public class Schedule extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Schedule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetCreatedAt()LonggetId()Automatically assigned upon creationList<Interval>getIntervals()StringgetName()StringgetTimeZone()DategetUpdatedAt()voidsetCreatedAt(Date createdAt)voidsetId(Long id)voidsetIntervals(List<Interval> intervals)voidsetName(String name)voidsetTimeZone(String timeZone)voidsetUpdatedAt(Date updatedAt)
-
-
-
Method Detail
-
getId
public Long getId()
Automatically assigned upon creation- Returns:
- Schedule ID
-
setId
public void setId(Long id)
-
getName
public String getName()
- Returns:
- Name of the Schedule
-
setName
public void setName(String name)
-
getTimeZone
public String getTimeZone()
- Returns:
- Time zone of the schedule
-
setTimeZone
public void setTimeZone(String timeZone)
-
getCreatedAt
public Date getCreatedAt()
- Returns:
- Time the schedule was created
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getUpdatedAt
public Date getUpdatedAt()
- Returns:
- Time the schedule was last updated
-
setUpdatedAt
public void setUpdatedAt(Date updatedAt)
-
-