Class MoveIssueRequest
- Object
-
- MoveIssueRequest
-
- All Implemented Interfaces:
Serializable
public class MoveIssueRequest extends Object implements Serializable
The properties needed to move the issue.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MoveIssueRequest.Builder
-
Constructor Summary
Constructors Constructor Description MoveIssueRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MoveIssueRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getCommunityId()
Required. The id of the community where to move the issue to.@NotNull UUID
getIssueId()
Required. The id of the issue to be moved.int
hashCode()
void
setCommunityId(@NotNull UUID communityId)
Required. The id of the community where to move the issue to.void
setIssueId(@NotNull UUID issueId)
Required. The id of the issue to be moved.String
toString()
-
-
-
Method Detail
-
builder
public static MoveIssueRequest.Builder builder()
-
getIssueId
@NotNull public @NotNull UUID getIssueId()
Required. The id of the issue to be moved.
-
getCommunityId
@NotNull public @NotNull UUID getCommunityId()
Required. The id of the community where to move the issue to.
-
setIssueId
public void setIssueId(@NotNull @NotNull UUID issueId)
Required. The id of the issue to be moved.
-
setCommunityId
public void setCommunityId(@NotNull @NotNull UUID communityId)
Required. The id of the community where to move the issue to.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-