export type GenerateChargebeePortalRequest = { redirect_url: string; }; export type GenerateChargebeePortalResponse = { portal_session: ChargebeePortalSession; }; export type ChargebeePortalSession = { id: string; token: string; access_url: string; status: string; created_at: number; expires_at: number; object: string; customer_id: string; };