Class GetKeysResponse
GetKeysResponse
Inherited Members
Namespace: Unity.Services.Apis.CloudSave
Assembly: solution.dll
Syntax
[Preserve]
public class GetKeysResponse
Constructors
GetKeysResponse(List<KeyMetadata>, GetItemsResponseLinks)
Initializes a new instance of the GetKeysResponse class.
Declaration
[Preserve]
public GetKeysResponse(List<KeyMetadata> results = null, GetItemsResponseLinks links = null)
Parameters
Type | Name | Description |
---|---|---|
List<KeyMetadata> | results | A paged list of keys for the given player, ordered alphabetically in pages of 100. (required). |
GetItemsResponseLinks | links | links (required). |
Properties
Links
Gets or Sets Links
Declaration
[Preserve]
public GetItemsResponseLinks Links { get; set; }
Property Value
Type | Description |
---|---|
GetItemsResponseLinks |
Results
A paged list of keys for the given player, ordered alphabetically in pages of 100.
Declaration
[Preserve]
public List<KeyMetadata> Results { get; set; }
Property Value
Type | Description |
---|---|
List<KeyMetadata> | A paged list of keys for the given player, ordered alphabetically in pages of 100. |