API reference
API reference
Select your platform
No SDKs available
No versions available

UOvrDestinationPagesMethods Class

Extends UObject
This class provides methods for accessing and manipulating the elements in a FOvrDestinationPages paginated list. It allows you to easily retrieve and modify the elements in the list, as well as check if there is a next page of elements available.

Static Member Functions

DestinationPages_GetElement ( Model , Index )
Access the indexed element in this list. Note that the index is zero-based, so the first element has an index of 0.
Signature
static FOvrDestination UOvrDestinationPagesMethods::DestinationPages_GetElement(const FOvrDestinationPages &Model, int64 Index)
Parameters
Model: const FOvrDestinationPages &
Index: int64
DestinationPages_GetNextUrl ( Model )
The URL to request the next paginated list of elements.
Signature
static FString UOvrDestinationPagesMethods::DestinationPages_GetNextUrl(const FOvrDestinationPages &Model)
Parameters
Model: const FOvrDestinationPages &
Returns
FString
DestinationPages_GetSize ( Model )
The number of elements contained within this list. This is not equal to the total number of elements across multiple pages.
Signature
static int64 UOvrDestinationPagesMethods::DestinationPages_GetSize(const FOvrDestinationPages &Model)
Parameters
Model: const FOvrDestinationPages &
Returns
int64
DestinationPages_HasNextPage ( Model )
Indicates whether there is a next page of elements that can be retrieved. If this value is true, you can use the next_url field to request the next page of elements.
Signature
static bool UOvrDestinationPagesMethods::DestinationPages_HasNextPage(const FOvrDestinationPages &Model)
Parameters
Model: const FOvrDestinationPages &
Returns
bool