export enum IntentType { Payment = 'payment', Payout = 'payout', } export function getIntentType(intentType: IntentType): string { switch (intentType) { case IntentType.Payment: return 'Payment'; case IntentType.Payout: return 'Payout'; default: throw new Error(`Unsupported IntentType value: ${intentType}`); } }