Origit Console
IBM Bob connected acme-payments · Business plan · demo
main northbridge-payments/src/types.ts
11 lines · 235 bytes sha256 0ba02a3cabde1aa772b2 hours ago
export type PaymentStatus = 'authorised' | 'settled' | 'failed';

export interface Payment {
  id: string;
  merchantId: string;
  amountMinor: number;
  currency: string;
  pan: string;
  status: PaymentStatus;
  createdAt: string;
}
Powered by IBM Bob 2.0