const raw = billing.promo as Record<string, unknown> | undefined;
if (!raw || typeof raw !== 'object') {
}
const id = typeof raw.id === 'string' ? raw.id : undefined;
const discountPercent = asNumber(raw.discountPercent) ?? asNumber(raw.discount_percent);