update all usage of user.name to user.accountId for privacy migration:

https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
This commit is contained in:
Cory Bennett
2020-02-23 23:59:39 -08:00
parent 57e1c7426e
commit a26683e01d
24 changed files with 557 additions and 206 deletions
+13
View File
@@ -0,0 +1,13 @@
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"`
}