Class FlowModelItemProperties
Represents the properties of a flow model item.
Implements
Inherited Members
Namespace: DNVGL.One.Compute.Core.FlowModel
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public class FlowModelItemProperties : IFlowModelItem
Constructors
View SourceFlowModelItemProperties(string, string, string, string, int)
Initializes a new instance of the FlowModelItemProperties class.
Declaration
public FlowModelItemProperties(string jobId, string id, string tag, string parentId, int batchNumber)
Parameters
Type | Name | Description |
---|---|---|
string | jobId | The job identifier. |
string | id | The identifier. |
string | tag | The tag. |
string | parentId | The parent identifier. |
int | batchNumber | The batch number. |
See Also
Properties
View SourceBatchNumber
Gets the batch number.
Declaration
public int BatchNumber { get; }
Property Value
Type | Description |
---|---|
int | The batch number. |
See Also
View SourceId
Gets the item identifier.
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
string | The identifier. |
See Also
View SourceJobId
Gets the job identifier.
Declaration
public string JobId { get; }
Property Value
Type | Description |
---|---|
string | The job identifier. |
See Also
View SourceParentId
Gets the parent identifier.
Declaration
public string ParentId { get; }
Property Value
Type | Description |
---|---|
string | The parent identifier. |
See Also
View SourceTag
Gets the tag.
Declaration
public string Tag { get; }
Property Value
Type | Description |
---|---|
string | The tag. |
Remarks
This is a client specified tag that does not need to be unique. It is used as a recognizable prefix for the job identifier.