Class RunModuleArguments
RunModuleArguments
Inherited Members
Namespace: Unity.Services.Apis.CloudCode
Assembly: solution.dll
Syntax
[Preserve]
public class RunModuleArguments
Constructors
RunModuleArguments(object)
Initializes a new instance of the RunModuleArguments class.
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
[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. |