Class RunModuleArguments
RunModuleArguments
Inherited Members
Namespace: Unity.Services.Apis.CloudCode
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "RunModuleArguments")]
[Preserve]
public class RunModuleArguments
Constructors
RunModuleArguments(object)
Initializes a new instance of the Run
Declaration
[Preserve]
public RunModuleArguments(object _params = null)
Parameters
Type | Name | Description |
---|---|---|
object | _params | Object containing key-value pairs that map on to the parameter definitions for the given function of a module. Parameters are required according to the arguments defined in the function signature. (required). |
Properties
Params
Object containing key-value pairs that map on to the parameter definitions for the given function of a module. Parameters are required according to the arguments defined in the function signature.
Declaration
[DataMember(Name = "params", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public object Params { get; set; }
Property Value
Type | Description |
---|---|
object | Object containing key-value pairs that map on to the parameter definitions for the given function of a module. Parameters are required according to the arguments defined in the function signature. |