import { FeatureProps } from '../static/package-plans';

export interface PlanItemProps {
  id: number;
  company_id: number;
  brand_id: number;
  name: string;
  description: string;
  is_default: number;
  data: string;
  user_id: number;
  billing_category_id: number;
  required_execution: string;
  reqired_interviewer_exe: string;
  show_financial_fitness: string;
  fitness_how_manyMonth: string;
  date_created: string;
  show_credit_progress_repair: string;
  updated_at: string;
  plan_access: string;
  planName?: string;
  workFee?: string;
  features?: FeatureProps[];
  price?: number;
  title?: string;
}

export interface BillingResultsProps {
  money_management: PlanItemProps;
  prosperity: PlanItemProps;
  success_plus: PlanItemProps;
}

export interface BillingPlansResultDataProps {
  status: string;
  message: string;
  code: number;
  results: BillingResultsProps;
}
