Class SkillListPageResponse
-
- All Implemented Interfaces:
public final class SkillListPageResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSkillListPageResponse.BuilderA builder for SkillListPageResponse.
-
Method Summary
Modifier and Type Method Description final List<SkillListResponse>data()List of skills. final BooleanhasMore()Whether there are more results available. final Optional<String>nextPage()Token for fetching the next page of results. final JsonField<List<SkillListResponse>>_data()Returns the raw JSON value of data. final JsonField<Boolean>_hasMore()Returns the raw JSON value of hasMore. final JsonField<String>_nextPage()Returns the raw JSON value of nextPage. final Map<String, JsonValue>_additionalProperties()final SkillListPageResponse.BuildertoBuilder()final SkillListPageResponsevalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SkillListPageResponse.Builderbuilder()Returns a mutable builder for constructing an instance of SkillListPageResponse. -
-
Method Detail
-
data
final List<SkillListResponse> data()
List of skills.
-
hasMore
final Boolean hasMore()
Whether there are more results available.
If
true, there are additional results that can be fetched using thenext_pagetoken.
-
nextPage
final Optional<String> nextPage()
Token for fetching the next page of results.
If
null, there are no more results available. Pass this value to thepage_tokenparameter in the next request to get the next page.
-
_data
final JsonField<List<SkillListResponse>> _data()
Returns the raw JSON value of data.
Unlike data, this method doesn't throw if the JSON field has an unexpected type.
-
_hasMore
final JsonField<Boolean> _hasMore()
Returns the raw JSON value of hasMore.
Unlike hasMore, this method doesn't throw if the JSON field has an unexpected type.
-
_nextPage
final JsonField<String> _nextPage()
Returns the raw JSON value of nextPage.
Unlike nextPage, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SkillListPageResponse.Builder toBuilder()
-
validate
final SkillListPageResponse validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static SkillListPageResponse.Builder builder()
Returns a mutable builder for constructing an instance of SkillListPageResponse.
The following fields are required:
.data() .hasMore() .nextPage()
-
-
-
-