Class PlayerAuthListProjectUserResponse
represents a list of players from a project.
Inherited Members
Namespace: Unity.Services.Apis.Admin.PlayerAuthentication
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "player-auth.ListProjectUserResponse")]
[Preserve]
public class PlayerAuthListProjectUserResponse
Constructors
PlayerAuthListProjectUserResponse(string, List<PlayerAuthListProjectUserResponseUser>)
Initializes a new instance of the Player
Declaration
[Preserve]
public PlayerAuthListProjectUserResponse(string next = null, List<PlayerAuthListProjectUserResponseUser> results = null)
Parameters
Type | Name | Description |
---|---|---|
string | next | The next page token if available. Needed for the next batch GET request of players.. |
List<Player |
results | Resulting collection of Players.. |
Properties
Next
The next page token if available. Needed for the next batch GET request of players.
Declaration
[DataMember(Name = "next", EmitDefaultValue = false)]
[Preserve]
public string Next { get; set; }
Property Value
Type | Description |
---|---|
string | The next page token if available. Needed for the next batch GET request of players. |
Results
Resulting collection of Players.
Declaration
[DataMember(Name = "results", EmitDefaultValue = false)]
[Preserve]
public List<PlayerAuthListProjectUserResponseUser> Results { get; set; }
Property Value
Type | Description |
---|---|
List<Player |
Resulting collection of Players. |