Search Results for

    Show / Hide Table of Contents

    Class CreateJobRequest

    Model to create a job.

    Inheritance
    object
    CreateJobRequest
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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>
    In this article
    Back to top Version 6.1.0.31rc