Class PipelineRunModel
This class represents a Pipeline run model.
Inheritance
System.Object
PipelineRunModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Vasont.Publisher.Models.Pipeline
Assembly: Vasont.Publisher.Models.dll
Syntax
public class PipelineRunModel
Properties
| Improve this Doc View SourceBuild
Gets or sets the build.
Declaration
[MaxLength(100)]
public string Build { get; set; }
Property Value
Type | Description |
---|---|
System.String | The build. |
EndDateTime
Gets or sets the completed date.
Declaration
public DateTime? EndDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The completed date. |
Metadata
Gets or sets an optional set of metadata for the notification message.
Declaration
public Dictionary<string, string> Metadata { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> |
MetadataModel
Gets or sets the metadata string and deserializes JSON formatted metadata into the Metadata dictionary.
Declaration
[JsonIgnore]
public string MetadataModel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PipelineId
Gets or sets the pipeline identifier.
Declaration
public Guid PipelineId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid | The pipeline identifier. |
PipelineName
Gets or sets the name of the pipeline.
Declaration
public string PipelineName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the pipeline. |
PipelineRunId
Gets or sets the pipeline run identifier.
Declaration
public Guid PipelineRunId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid | The pipeline run identifier. |
RequestDateTime
Gets or sets the request date of a job.
Declaration
public DateTime RequestDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
StartDateTime
Gets or sets the completed date.
Declaration
public DateTime? StartDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The completed date. |
State
Gets or sets the state.
Declaration
public PipelineRunState State { get; set; }
Property Value
Type | Description |
---|---|
PipelineRunState | The state. |
UpdatedDate
Gets or sets the updated date.
Declaration
public DateTime? UpdatedDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> | The updated date. |
User
Gets or sets the user.
Declaration
public MicroUserModel User { get; set; }
Property Value
Type | Description |
---|---|
MicroUserModel | The user. |