Package io.sendon.model
Class PointsListResponse
- java.lang.Object
-
- io.sendon.model.PointsListResponse
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2025-03-25T16:56:04.124507+09:00[Asia/Seoul]", comments="Generator version: 7.7.0") public class PointsListResponse extends Object
PointsListResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPointsListResponse.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_CURSORstatic StringSERIALIZED_NAME_POINTS
-
Constructor Summary
Constructors Constructor Description PointsListResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PointsListResponseaddPointsItem(PointsList pointsItem)PointsListResponsecursor(BigDecimal cursor)booleanequals(Object o)static PointsListResponsefromJson(String jsonString)Create an instance of PointsListResponse given an JSON stringBigDecimalgetCursor()데이터 오프셋List<PointsList>getPoints()포인트 리스트inthashCode()PointsListResponsepoints(List<PointsList> points)voidsetCursor(BigDecimal cursor)voidsetPoints(List<PointsList> points)StringtoJson()Convert an instance of PointsListResponse to an JSON stringStringtoString()static voidvalidateJsonElement(com.google.gson.JsonElement jsonElement)Validates the JSON Element and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_POINTS
public static final String SERIALIZED_NAME_POINTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CURSOR
public static final String SERIALIZED_NAME_CURSOR
- See Also:
- Constant Field Values
-
-
Method Detail
-
points
public PointsListResponse points(List<PointsList> points)
-
addPointsItem
public PointsListResponse addPointsItem(PointsList pointsItem)
-
getPoints
@Nonnull public List<PointsList> getPoints()
포인트 리스트- Returns:
- points
-
setPoints
public void setPoints(List<PointsList> points)
-
cursor
public PointsListResponse cursor(BigDecimal cursor)
-
getCursor
@Nullable public BigDecimal getCursor()
데이터 오프셋- Returns:
- cursor
-
setCursor
public void setCursor(BigDecimal cursor)
-
validateJsonElement
public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOExceptionValidates the JSON Element and throws an exception if issues found- Parameters:
jsonElement- JSON Element- Throws:
IOException- if the JSON Element is invalid with respect to PointsListResponse
-
fromJson
public static PointsListResponse fromJson(String jsonString) throws IOException
Create an instance of PointsListResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of PointsListResponse
- Throws:
IOException- if the JSON string is invalid with respect to PointsListResponse
-
toJson
public String toJson()
Convert an instance of PointsListResponse to an JSON string- Returns:
- JSON string
-
-