Class ListModulesResponse
ListModulesResponse
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudCode
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "ListModulesResponse")]
[Preserve]
public class ListModulesResponse
Constructors
ListModulesResponse(List<ModuleMetadata>, ListScriptsResponseLinks, string)
Initializes a new instance of the List
Declaration
[Preserve]
public ListModulesResponse(List<ModuleMetadata> results = null, ListScriptsResponseLinks links = null, string nextPageToken = null)
Parameters
Type | Name | Description |
---|---|---|
List<Module |
results | List of module metadata (required). |
List |
links | links (required). |
string | nextPageToken | nextPageToken (required). |
Properties
Links
Gets or Sets Links
Declaration
[DataMember(Name = "links", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public ListScriptsResponseLinks Links { get; set; }
Property Value
Type | Description |
---|---|
List |
NextPageToken
Gets or Sets NextPageToken
Declaration
[DataMember(Name = "nextPageToken", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Results
List of module metadata
Declaration
[DataMember(Name = "results", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<ModuleMetadata> Results { get; set; }
Property Value
Type | Description |
---|---|
List<Module |
List of module metadata |