Class GitHubIssueResult.Issue
Actual GitHub Issue type
Inheritance
System.Object
GitHubIssueResult.Issue
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sloader.Result.Types
Assembly: Sloader.Result.dll
Syntax
public class Issue : IHaveRawContent
Properties
View SourceActor
Who issued the issue
Declaration
public string Actor { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Body
Initial body text of the PullRequest or Issue
Declaration
public string Body { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreatedAt
DateTime when the event happend
Declaration
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Id
Each GitHubEvent has its own unique ID
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsPullRequest
True if Issue is related to a Pull Request
Declaration
public bool IsPullRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Number
Defines the Issue Number on GitHub
Declaration
public string Number { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RawContent
JSON serialized complete event data
Declaration
public string RawContent { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RelatedDescription
Some human readable information
Declaration
public string RelatedDescription { get; set; }
Property Value
Type | Description |
---|---|
System.String |
State
State of the PullRequest or Issue, e.g. open or closed
Declaration
public string State { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Title
Readable title of the issue or PullRequest
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Url
Target URL of the Issue or PullRequest
Declaration
public string Url { get; set; }
Property Value
Type | Description |
---|---|
System.String |