public interface FieldDefinitionsClient
| Modifier and Type | Method and Description |
|---|---|
WFieldInfo |
getFieldDefinitionById(ParametersForGetFieldDefinitionById parameters)
- Returns a single field definition associated with the specified ID.
|
ODataValueContextOfIListOfWFieldInfo |
getFieldDefinitions(ParametersForGetFieldDefinitions parameters)
- Returns a paged listing of field definitions available in the specified repository.
- Useful when trying to find a list of all field definitions available, rather than only those assigned to a specific entry/template. - Default page size: 100. |
void |
getFieldDefinitionsForEach(Function<ODataValueContextOfIListOfWFieldInfo,Boolean> callback,
Integer maxPageSize,
ParametersForGetFieldDefinitions parameters)
Provides the functionality to iteratively (i.e.
|
ODataValueContextOfIListOfWFieldInfo |
getFieldDefinitionsNextLink(String nextLink,
int maxPageSize)
Returns the next subset of the requested collection, using a nextlink url.
|
WFieldInfo getFieldDefinitionById(ParametersForGetFieldDefinitionById parameters)
parameters - An object of type ParametersForGetFieldDefinitionById which encapsulates the parameters of getFieldDefinitionById method.WFieldInfo The return valueODataValueContextOfIListOfWFieldInfo getFieldDefinitions(ParametersForGetFieldDefinitions parameters)
parameters - An object of type ParametersForGetFieldDefinitions which encapsulates the parameters of getFieldDefinitions method.ODataValueContextOfIListOfWFieldInfo The return valueODataValueContextOfIListOfWFieldInfo getFieldDefinitionsNextLink(String nextLink, int maxPageSize)
nextLink - A url that allows retrieving the next subset of the requested collection.maxPageSize - Optionally specify the maximum number of items to retrieve.ODataValueContextOfIListOfWFieldInfo The return valuevoid getFieldDefinitionsForEach(Function<ODataValueContextOfIListOfWFieldInfo,Boolean> callback, Integer maxPageSize, ParametersForGetFieldDefinitions parameters)
getFieldDefinitions, and apply a function on the response of each iteration.callback - A delegate that will be called each time new data is retrieved. Returns false to stop receiving more data; returns true to be called again if there's more data.maxPageSize - Optionally specify the maximum number of items to retrieve.parameters - An object of type ParametersForGetFieldDefinitions which encapsulates the parameters of getFieldDefinitions method.Copyright © 2025. All rights reserved.