Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
import { PaymentMethodType } from '../entities/payment-method.entity';
|
|
export declare class CreatePaymentMethodDto {
|
|
type: PaymentMethodType;
|
|
is_default?: boolean;
|
|
external_payment_method_id?: string;
|
|
payment_provider?: string;
|
|
card_last_four?: string;
|
|
card_brand?: string;
|
|
card_exp_month?: number;
|
|
card_exp_year?: number;
|
|
}
|