/** * Create payment output data transfer object * Output from creating a payment */ export interface CreatePaymentOutputDto { paymentId: string; success: boolean; }