13 lines
280 B
TypeScript

export interface PaymentMethod {
id: string;
code: 'CARD' | 'COD' | 'UPI' | 'WALLET';
displayName: string;
iconUrl: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
deletedAt: string | null;
}
export type PaymentMethodsResponse = PaymentMethod[];