Package org.gitlab4j.api.models
Class LabelEvent
- java.lang.Object
-
- org.gitlab4j.api.models.LabelEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class LabelEvent extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LabelEvent.ResourceType
Enum to use for specifying the label event resource type.
-
Constructor Summary
Constructors Constructor Description LabelEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAction()
java.lang.String
getCreatedAt()
java.lang.Long
getId()
Label
getLabel()
java.lang.Long
getResourceId()
LabelEvent.ResourceType
getResourceType()
User
getUser()
void
setAction(java.lang.String action)
void
setCreatedAt(java.lang.String createdAt)
void
setId(java.lang.Long id)
void
setLabel(Label label)
void
setResourceId(java.lang.Long resourceId)
void
setResourceType(LabelEvent.ResourceType resourceType)
void
setUser(User user)
java.lang.String
toString()
-
-
-
Method Detail
-
getId
public java.lang.Long getId()
-
setId
public void setId(java.lang.Long id)
-
getUser
public User getUser()
-
setUser
public void setUser(User user)
-
getCreatedAt
public java.lang.String getCreatedAt()
-
setCreatedAt
public void setCreatedAt(java.lang.String createdAt)
-
getResourceType
public LabelEvent.ResourceType getResourceType()
-
setResourceType
public void setResourceType(LabelEvent.ResourceType resourceType)
-
getResourceId
public java.lang.Long getResourceId()
-
setResourceId
public void setResourceId(java.lang.Long resourceId)
-
getLabel
public Label getLabel()
-
setLabel
public void setLabel(Label label)
-
getAction
public java.lang.String getAction()
-
setAction
public void setAction(java.lang.String action)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-