• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • LoginInfo
    • Pageable
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • Resolution
    • Results<TResultType>
    • Schema
    • Search
    • SearchResult<TIssue>
    • ServerInfo
    • SharePermission
    • Sprint
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

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 Source

BaseUrl

The base URL for this server

Declaration
[JsonProperty(PropertyName = "baseUrl")]
public Uri BaseUrl { get; set; }
Property Value
Type Description
System.Uri
| Improve this Doc View Source

BuildDate

Date of the build

Declaration
[JsonProperty(PropertyName = "buildDate")]
public DateTimeOffset? BuildDate { get; set; }
Property Value
Type Description
System.Nullable<System.DateTimeOffset>
| Improve this Doc View Source

BuildNumber

Build number (internal information)

Declaration
[JsonProperty(PropertyName = "buildNumber")]
public int ? BuildNumber { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
| Improve this Doc View Source

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
| Improve this Doc View Source

ServerTitle

Title of the server

Declaration
[JsonProperty(PropertyName = "serverTitle")]
public string ServerTitle { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Version

Version of the software

Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo