Class ListScriptsResponse
ListScriptsResponse
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudCode
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "ListScriptsResponse")]
[Preserve]
public class ListScriptsResponse
Constructors
ListScriptsResponse(List<ScriptMetadata>, ListScriptsResponseLinks)
Initializes a new instance of the List
Declaration
[Preserve]
public ListScriptsResponse(List<ScriptMetadata> results = null, ListScriptsResponseLinks links = null)
Parameters
Type | Name | Description |
---|---|---|
List<Script |
results | List of metadata about scripts (required). |
List |
links | links (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 |
Results
List of metadata about scripts
Declaration
[DataMember(Name = "results", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<ScriptMetadata> Results { get; set; }
Property Value
Type | Description |
---|---|
List<Script |
List of metadata about scripts |