declare class PaymentStatus {
    code: string | null;
    description?: string | null;
    sequenceNum?: number | null;
    deletionMarker?: string | null;
    cashFlag?: string | null;
    callCentreFlag?: string | null;
    chequeFlag?: string | null;
}

export { PaymentStatus };
