Class ServerInfo
Server Info is used for the version and title See: https://docs.atlassian.com/jira/REST/latest/#api/2/serverInfo
Inheritance
System.Object
ServerInfo
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:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class ServerInfo
Properties
| Improve this Doc View SourceBaseUrl
The base URL for this server
Declaration
[JsonProperty(PropertyName = "baseUrl")]
public Uri BaseUrl { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
BuildDate
Date of the build
Declaration
[JsonProperty(PropertyName = "buildDate")]
public DateTimeOffset? BuildDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
BuildNumber
Build number (internal information)
Declaration
[JsonProperty(PropertyName = "buildNumber")]
public int ? BuildNumber { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
ScmInfo
Git commit id (at lease until the SCM is changed)
Declaration
[JsonProperty(PropertyName = "scmInfo")]
public string ScmInfo { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ServerTitle
Title of the server
Declaration
[JsonProperty(PropertyName = "serverTitle")]
public string ServerTitle { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
Version of the software
Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |