/** * @type OmsReasonCode: A single reason code configured in Order Management (OMS). * * @property reason: The reason value as configured in OMS. * - **Max Length:** 256 * * @property default: Whether this reason is the default that the server uses when no reason is supplied on a cancel or return request. * */ export type OmsReasonCode = { reason: string; default: boolean; } & { [key: string]: any; };