Package org.zendesk.client.v2.model
Class DeletedTicket
- java.lang.Object
-
- org.zendesk.client.v2.model.DeletedTicket
-
- All Implemented Interfaces:
Serializable
public class DeletedTicket extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDeletedTicket.Actor
-
Field Summary
Fields Modifier and Type Field Description protected DeletedTicket.Actoractorprotected DatedeletedAtprotected Stringdescriptionprotected Longidprotected StatuspreviousStateprotected Stringsubject
-
Constructor Summary
Constructors Constructor Description DeletedTicket()DeletedTicket(Long id, String subject, String description, DeletedTicket.Actor actor, Status previousState, Date deletedAt)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeletedTicket.ActorgetActor()DategetDeletedAt()StringgetDescription()LonggetId()StatusgetPreviousState()StringgetSubject()voidsetActor(DeletedTicket.Actor actor)voidsetDeletedAt(Date deletedAt)voidsetDescription(String description)voidsetId(Long id)voidsetPreviousState(Status previousState)voidsetSubject(String subject)StringtoString()
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getSubject
public String getSubject()
-
setSubject
public void setSubject(String subject)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getActor
public DeletedTicket.Actor getActor()
-
setActor
public void setActor(DeletedTicket.Actor actor)
-
getPreviousState
public Status getPreviousState()
-
setPreviousState
public void setPreviousState(Status previousState)
-
getDeletedAt
public Date getDeletedAt()
-
setDeletedAt
public void setDeletedAt(Date deletedAt)
-
-