Class GetPublishedResourcesResponse
GetPublishedResourcesResponse
Inherited Members
Namespace: Unity.Services.Apis.Admin.Economy
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "get_published_resources_response")]
[Preserve]
public class GetPublishedResourcesResponse
Constructors
GetPublishedResourcesResponse(List<GetResourcesResponseResultsInner>, int, int, int)
Initializes a new instance of the Get
Declaration
[Preserve]
public GetPublishedResourcesResponse(List<GetResourcesResponseResultsInner> results = null, int offset = 0, int limit = 0, int total = 0)
Parameters
Type | Name | Description |
---|---|---|
List<Get |
results | List of resources. (required). |
int | offset | Offset used by the request. (required) (default to 0). |
int | limit | Limit used by the request. (required). |
int | total | The total number of resources matched by the request. (required). |
Properties
Limit
Limit used by the request.
Declaration
[DataMember(Name = "limit", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Limit { get; set; }
Property Value
Type | Description |
---|---|
int | Limit used by the request. |
Offset
Offset used by the request.
Declaration
[DataMember(Name = "offset", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Offset { get; set; }
Property Value
Type | Description |
---|---|
int | Offset used by the request. |
Results
List of resources.
Declaration
[DataMember(Name = "results", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<GetResourcesResponseResultsInner> Results { get; set; }
Property Value
Type | Description |
---|---|
List<Get |
List of resources. |
Total
The total number of resources matched by the request.
Declaration
[DataMember(Name = "total", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Total { get; set; }
Property Value
Type | Description |
---|---|
int | The total number of resources matched by the request. |