Package org.openapitools.client.model
Class ResourceReportDto
- java.lang.Object
-
- org.openapitools.client.model.ResourceReportDto
-
public class ResourceReportDto extends Object
ResourceReportDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ERRORSstatic StringSERIALIZED_NAME_WARNINGS
-
Constructor Summary
Constructors Constructor Description ResourceReportDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceReportDtoaddErrorsItem(ProblemDto errorsItem)ResourceReportDtoaddWarningsItem(ProblemDto warningsItem)booleanequals(Object o)ResourceReportDtoerrors(List<ProblemDto> errors)List<ProblemDto>getErrors()A list of errors occurred during parsing.List<ProblemDto>getWarnings()A list of warnings occurred during parsing.inthashCode()voidsetErrors(List<ProblemDto> errors)voidsetWarnings(List<ProblemDto> warnings)StringtoString()ResourceReportDtowarnings(List<ProblemDto> warnings)
-
-
-
Field Detail
-
SERIALIZED_NAME_ERRORS
public static final String SERIALIZED_NAME_ERRORS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_WARNINGS
public static final String SERIALIZED_NAME_WARNINGS
- See Also:
- Constant Field Values
-
-
Method Detail
-
errors
public ResourceReportDto errors(List<ProblemDto> errors)
-
addErrorsItem
public ResourceReportDto addErrorsItem(ProblemDto errorsItem)
-
getErrors
public List<ProblemDto> getErrors()
A list of errors occurred during parsing.- Returns:
- errors
-
setErrors
public void setErrors(List<ProblemDto> errors)
-
warnings
public ResourceReportDto warnings(List<ProblemDto> warnings)
-
addWarningsItem
public ResourceReportDto addWarningsItem(ProblemDto warningsItem)
-
getWarnings
public List<ProblemDto> getWarnings()
A list of warnings occurred during parsing.- Returns:
- warnings
-
setWarnings
public void setWarnings(List<ProblemDto> warnings)
-
-