MetaPlatformSDK_ChallengeArray

Inherits: RefCounted

An array of challenges.

Description

An array of MetaPlatformSDK_Challenges.

NOTE: This isn't a Godot Array, but you can loop over it using for x in arr just like a Godot Array.

Properties

String

next_url

""

String

previous_url

""

int

total_count

0

Methods

MetaPlatformSDK_Challenge

get_element ( int index ) const

bool

has_next_page ( ) const

bool

has_previous_page ( )

int

size ( ) const


Property Descriptions

String next_url = ""

  • String get_next_url ( )

The URL used to request the next page of elements.


String previous_url = ""

  • String get_previous_url ( )

The URL used to request the previous page of elements.


int total_count = 0

  • int get_total_count ( )

The total count of elements on all pages.


Method Descriptions

MetaPlatformSDK_Challenge get_element ( int index ) const

Returns an element in the array by index.


bool has_next_page ( ) const

Returns true if there is next page of elements.


bool has_previous_page ( )

Returns true if there is previous page of elements.


int size ( ) const

Returns the size of the array.