mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
a26683e01d
https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
14 lines
774 B
Go
14 lines
774 B
Go
package jiradata
|
|
|
|
type ServerInfo struct {
|
|
BaseURL string `json:"baseUrl,omitempty" yaml:"baseUrl,omitempty"`
|
|
BuildDate string `json:"buildDate,omitempty" yaml:"buildDate,omitempty"`
|
|
BuildNumber int `json:"buildNumber,omitempty" yaml:"buildNumber,omitempty"`
|
|
DeploymentType string `json:"deploymentType,omitempty" yaml:"deploymentType,omitempty"`
|
|
SCMInfo string `json:"scmInfo,omitempty" yaml:"scmInfo,omitempty"`
|
|
ServerTime string `json:"serverTime,omitempty" yaml:"serverTime,omitempty"`
|
|
ServerTitle string `json:"serverTitle,omitempty" yaml:"serverTitle,omitempty"`
|
|
Version string `json:"version,omitempty" yaml:"version,omitempty"`
|
|
VersionNumbers []int `json:"versionNumbers,omitempty" yaml:"versionNumbers,omitempty"`
|
|
}
|