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"` }