Class CreateJobRequest
Model to create a job.
Inherited Members
Namespace: Noxum.Nova.Cms.Client
Assembly: Noxum.Nova.Cms.Client.dll
Syntax
public class CreateJobRequest
Properties
BranchId
The id of the branch.
Declaration
[JsonPropertyName("branchId")]
public int BranchId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
InputFile
Information about the file used as the job input
Declaration
[JsonPropertyName("inputFile")]
public JobInputFileInfo InputFile { get; set; }
Property Value
| Type | Description |
|---|---|
| JobInputFileInfo |
JobDefinitionId
The id of the job definition.
Declaration
[JsonPropertyName("jobDefinitionId")]
public int JobDefinitionId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Language
Language of the job
Declaration
[JsonPropertyName("language")]
public int Language { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ObjIds
The ids of the context objects.
Declaration
[JsonPropertyName("objIds")]
public List<int> ObjIds { get; set; }
Property Value
| Type | Description |
|---|---|
| List<int> |
Parameters
The Job Parameters
Declaration
[JsonPropertyName("parameters")]
public List<JobParameter> Parameters { get; set; }
Property Value
| Type | Description |
|---|---|
| List<JobParameter> |
ScopeIds
The ids of the scope objects.
Declaration
[JsonPropertyName("scopeIds")]
public List<int> ScopeIds { get; set; }
Property Value
| Type | Description |
|---|---|
| List<int> |