16 lines
313 B
Go
16 lines
313 B
Go
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"`
|
|
}
|