Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed intialism with ISO #283

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/infra/models/sm_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type InfoScheme struct {

// InfoBuildDataScheme represents the build date of a system.
type InfoBuildDataScheme struct {
Iso8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the build date.
ISO8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the build date.
Jira string `json:"jira,omitempty"` // The Jira format of the build date.
Friendly string `json:"friendly,omitempty"` // The friendly format of the build date.
EpochMillis int64 `json:"epochMillis,omitempty"` // The epoch milliseconds of the build date.
Expand Down
4 changes: 2 additions & 2 deletions pkg/infra/models/sm_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ type CustomerRequestServiceDeskScheme struct {

// CustomerRequestDateScheme represents a date for a customer request.
type CustomerRequestDateScheme struct {
Iso8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the date.
ISO8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the date.
Jira string `json:"jira,omitempty"` // The Jira format of the date.
Friendly string `json:"friendly,omitempty"` // The friendly format of the date.
EpochMillis int `json:"epochMillis,omitempty"` // The epoch milliseconds of the date.
Expand Down Expand Up @@ -108,7 +108,7 @@ type CustomerRequestCurrentStatusScheme struct {

// CustomerRequestCurrentStatusDateScheme represents a date for a customer request current status.
type CustomerRequestCurrentStatusDateScheme struct {
Iso8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the date.
ISO8601 string `json:"iso8601,omitempty"` // The ISO 8601 format of the date.
Jira string `json:"jira,omitempty"` // The Jira format of the date.
Friendly string `json:"friendly,omitempty"` // The friendly format of the date.
EpochMillis int `json:"epochMillis,omitempty"` // The epoch milliseconds of the date.
Expand Down
Loading