go-types/pkg/upstreamApi/reasonCodes.go

16 lines
313 B
Go
Raw Normal View History

2024-05-02 14:37:18 +01:00
package upstreamApi
type ReasonCodeObject struct {
GetReasonCodeListResult Reasons `json:"GetReasonCodeListResult"`
}
type Reasons struct {
ReasonList []ReasonCode `json:"reason"`
}
type ReasonCode struct {
Code string `json:"code"`
Late string `json:"lateReason"`
Cancel string `json:"cancReason"`
}