Package org.openapitools.client.model
Class ProblemDto
- java.lang.Object
-
- org.openapitools.client.model.ProblemDto
-
public class ProblemDto extends Object
ProblemDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_COLUMNstatic StringSERIALIZED_NAME_ELEMENT_IDSstatic StringSERIALIZED_NAME_LINEstatic StringSERIALIZED_NAME_MAIN_ELEMENT_IDstatic StringSERIALIZED_NAME_MESSAGE
-
Constructor Summary
Constructors Constructor Description ProblemDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProblemDtoaddElementIdsItem(String elementIdsItem)ProblemDtocolumn(Integer column)ProblemDtoelementIds(List<String> elementIds)booleanequals(Object o)IntegergetColumn()The column where the problem occurred.List<String>getElementIds()A list of element id affected by the problem.IntegergetLine()The line where the problem occurred.StringgetMainElementId()The main element id where the problem occurred.StringgetMessage()The message of the problem.inthashCode()ProblemDtoline(Integer line)ProblemDtomainElementId(String mainElementId)ProblemDtomessage(String message)voidsetColumn(Integer column)voidsetElementIds(List<String> elementIds)voidsetLine(Integer line)voidsetMainElementId(String mainElementId)voidsetMessage(String message)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_MESSAGE
public static final String SERIALIZED_NAME_MESSAGE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LINE
public static final String SERIALIZED_NAME_LINE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_COLUMN
public static final String SERIALIZED_NAME_COLUMN
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MAIN_ELEMENT_ID
public static final String SERIALIZED_NAME_MAIN_ELEMENT_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ELEMENT_IDS
public static final String SERIALIZED_NAME_ELEMENT_IDS
- See Also:
- Constant Field Values
-
-
Method Detail
-
message
public ProblemDto message(String message)
-
getMessage
public String getMessage()
The message of the problem.- Returns:
- message
-
setMessage
public void setMessage(String message)
-
line
public ProblemDto line(Integer line)
-
getLine
public Integer getLine()
The line where the problem occurred.- Returns:
- line
-
setLine
public void setLine(Integer line)
-
column
public ProblemDto column(Integer column)
-
getColumn
public Integer getColumn()
The column where the problem occurred.- Returns:
- column
-
setColumn
public void setColumn(Integer column)
-
mainElementId
public ProblemDto mainElementId(String mainElementId)
-
getMainElementId
public String getMainElementId()
The main element id where the problem occurred.- Returns:
- mainElementId
-
setMainElementId
public void setMainElementId(String mainElementId)
-
elementIds
public ProblemDto elementIds(List<String> elementIds)
-
addElementIdsItem
public ProblemDto addElementIdsItem(String elementIdsItem)
-
getElementIds
public List<String> getElementIds()
A list of element id affected by the problem.- Returns:
- elementIds
-
-