export interface IOrderCancellation {
    cancellationBy: string;
    cancellationCode: string;
    reason: string;
}
