static Request< Models.ChallengeEntryList > | GetNextEntries ( Models.ChallengeEntryList list ) |
static Request< Models.ChallengeEntryList > | |
static Request< Models.ChallengeList > | GetNextChallenges ( Models.ChallengeList list ) |
static Request< Models.ChallengeList > | |
static Request< Models.Challenge > | |
static Request< Models.Challenge > | DeclineInvite ( UInt64 challengeID ) |
static Request | Delete ( UInt64 challengeID ) |
static Request< Models.Challenge > | Get ( UInt64 challengeID ) |
static Request< Models.ChallengeEntryList > | GetEntries ( UInt64 challengeID, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt ) |
static Request< Models.ChallengeEntryList > | |
static Request< Models.ChallengeEntryList > | |
static Request< Models.ChallengeList > | |
static Request< Models.Challenge > | Join ( UInt64 challengeID ) |
static Request< Models.Challenge > | Leave ( UInt64 challengeID ) |
static Request< Models.Challenge > |
static Request<Models.ChallengeEntryList> Oculus.Platform.Challenges.GetNextEntries ( Models.ChallengeEntryList list ) |
---|
No description available.
|
static Request<Models.ChallengeEntryList> Oculus.Platform.Challenges.GetPreviousEntries ( Models.ChallengeEntryList list ) |
---|
No description available.
|
static Request<Models.ChallengeList> Oculus.Platform.Challenges.GetNextChallenges ( Models.ChallengeList list ) |
---|
No description available.
|
static Request<Models.ChallengeList> Oculus.Platform.Challenges.GetPreviousChallenges ( Models.ChallengeList list ) |
---|
No description available.
|
static Request<Models.Challenge> Oculus.Platform.Challenges.Create ( string leaderboardName, ChallengeOptions challengeOptions ) |
---|
DEPRECATED. Use server-to-server API call instead. |
static Request<Models.Challenge> Oculus.Platform.Challenges.DeclineInvite ( UInt64 challengeID ) |
---|
If the current user has an invite to the challenge, decline the invite |
static Request Oculus.Platform.Challenges.Delete ( UInt64 challengeID ) |
---|
DEPRECATED. Use server-to-server API call instead. |
static Request<Models.Challenge> Oculus.Platform.Challenges.Get ( UInt64 challengeID ) |
---|
Gets the information for a single challenge Parameters challengeID The id of the challenge whose entries to return. |
static Request<Models.ChallengeEntryList> Oculus.Platform.Challenges.GetEntries ( UInt64 challengeID, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt ) |
---|
Requests a block of challenge entries. Parameters challengeID The id of the challenge whose entries to return. limitDefines the maximum number of entries to return. filterBy using ovrLeaderboard_FilterFriends, this allows you to filter the returned values to bidirectional followers. startAtDefines whether to center the query on the user or start at the top of the challenge. |
static Request<Models.ChallengeEntryList> Oculus.Platform.Challenges.GetEntriesAfterRank ( UInt64 challengeID, int limit, ulong afterRank ) |
---|
Requests a block of challenge entries. Parameters challengeID The id of the challenge whose entries to return. limitThe maximum number of entries to return. afterRankThe position after which to start. For example, 10 returns challenge results starting with the 11th user. |
static Request<Models.ChallengeEntryList> Oculus.Platform.Challenges.GetEntriesByIds ( UInt64 challengeID, int limit, LeaderboardStartAt startAt, UInt64 [] userIDs ) |
---|
Requests a block of challenge entries. Will return only entries matching the user IDs passed in. Parameters challengeID The id of the challenge whose entries to return. limitDefines the maximum number of entries to return. startAtDefines whether to center the query on the user or start at the top of the challenge. If this is LeaderboardStartAt.CenteredOnViewer or LeaderboardStartAt.CenteredOnViewerOrTop, then the current user's ID will be automatically added to the query. userIDsDefines a list of user ids to get entries for. |
static Request<Models.ChallengeList> Oculus.Platform.Challenges.GetList ( ChallengeOptions challengeOptions, int limit ) |
---|
Requests for a list of challenge |
static Request<Models.Challenge> Oculus.Platform.Challenges.Join ( UInt64 challengeID ) |
---|
If the current user has permission, join the challenge |
static Request<Models.Challenge> Oculus.Platform.Challenges.Leave ( UInt64 challengeID ) |
---|
If the current user has permission, leave the challenge |
static Request<Models.Challenge> Oculus.Platform.Challenges.UpdateInfo ( UInt64 challengeID, ChallengeOptions challengeOptions ) |
---|
DEPRECATED. Use server-to-server API call instead. |