import api from '../lib/oo-api' import {OOAPIResult} from '../type/oo-api' import {OOPayment} from '../type/oo-payment' export default async (uid: string): Promise> => { const ooapiRes = await api({ resource: 'payments', pathParameter: uid, method: 'GET' }) return ooapiRes }