export interface PaymentCard {
	card_id: number;
	last4: string;
	brand: string;
	created_at: string;
	created_at_timestamp: number;
}
