export interface HeadingDescription { id: number; heading: string; description: string; order: number; } export interface HCD extends HeadingDescription { // H: Heading, C: CTA, D: Description cta: string; } export interface TDI { // T: Title, D: Description, I: Images title: string; description: string; images: LogoMultipleImageDataInterface; id: number; } export interface LogoImageDataInterface { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } }; } export interface LogoMultipleImageDataInterface { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } }[]; } export interface FinTechPageAPIResponseInterface { heroSection: HeroSectionInterface; growth: GrowthInterface; growth2: GrowthInterface; ourServices: OurServicesInterface; industry: IndustryInterface; experience: ExperienceInterface; serviceAccordion: ServiceAccordionInterface; cta1: CtaInterface; customService: CustomServiceInterface; clients: ClientsInterface; successStory: SuccessStoryInterface; ourSolutions: OurServicesInterface; compliance: ComplianceInterface; technologies: TechnologiesInterface; cta2: CtaInterface; advanceTech: AdvanceTechInterface; thirdPartyIntegration: ThirdPartyIntegrationInterface; developmentProcess: DevelopmentProcessInterface; cta3: CtaInterface; whyChooseUs: WhyChooseUsInterface; testimonials: TestimonialInterface; testimonials2: Testimonial2Interface; faq: FaqInterface; popUp: PopUpInterface; microHeaders: MicroHeadersInterface; workProcess: WorkProcessInterface; cost: WorkProcessInterface; inspiration: InspirationInterface; } interface CardsInterface { text: string; image: LogoImageDataInterface; } interface ListItemsInterface { icon: LogoImageDataInterface; image: LogoImageDataInterface; title: string; description: string; } export interface HeroSectionInterface extends HCD { image: LogoImageDataInterface; } export interface MicroHeadersInterface { data: MicroHeader[]; } export interface MicroHeader { id: number; attributes: { item: string; find_id: string; idCheck: string; }; } export interface CtaInterface { order: number; title: string; cta: string; bgImage: LogoImageDataInterface; } export interface PopUpInterface extends HeadingDescription { btnText: string; icon: LogoImageDataInterface; } export interface FaqInterface extends HeadingDescription { faqs: { answer: string; question: string; }[]; } export interface GrowthInterface extends HCD { cards: CardsInterface[]; } export interface OurServicesInterface extends HCD { cards: TDI[]; } export interface IndustryInterface extends HeadingDescription { listItems: ListItemsInterface[]; } export interface ExperienceInterface extends HeadingDescription { slider: TDI[]; } export interface ServiceAccordionInterface extends HeadingDescription { accordion: { heading: string; description: string; icon: LogoImageDataInterface; }[]; } export interface CustomServiceInterface extends HCD { listItems: ListItemsInterface[]; } export interface ClientsInterface extends HeadingDescription { brandLogos: { data: { attributes: { brands: { name?: string; mobile?: boolean; logo: LogoImageDataInterface; }[]; }; }; }; } export interface SuccessStoryInterface extends HCD { caseStudies: { data: { id: number; attributes: { pageUrl: string; shortDetails: string; projectName: string; category: string; industry: string; cardImage: LogoImageDataInterface; }; }[]; }; } export interface ComplianceInterface { description: string; image: LogoImageDataInterface; order: number; products: { icon: LogoImageDataInterface; title: string; }[]; } export interface TechnologiesInterface extends HeadingDescription { tools: ToolInterface[]; } export interface ToolInterface { id: number; title: string; technologies: { data: { attributes: { name: string; icon: LogoImageDataInterface; }; }[]; }; } export interface AdvanceTechInterface extends HeadingDescription { slider: TDI[]; } export interface ThirdPartyIntegrationInterface extends HCD { slider: CardsInterface[]; } export interface DevelopmentProcessInterface extends HeadingDescription { cards: { title: string; description: string; images: LogoMultipleImageDataInterface; }[]; } export interface WhyChooseUsInterface extends HCD { cards: TDI[]; } export interface Testimonial2Interface { title: string; testimonials: { data: { attributes: { name: string; designation: string; message: string; image: LogoImageDataInterface }; }[]; }; order: number; } export interface TestimonialInterface { id: number; title: string; clientName: string; clientDesignation: string; testimonials: { data: { id: number; attributes: { name: string; designation: string; message: string; rating: number; clientImage: LogoImageDataInterface; }; }[]; }; videoTestimonial: LogoImageDataInterface; order: number; } export interface WorkProcessInterface extends HCD { cards: TDI[]; } export interface InspirationInterface extends HCD { tabs: { title: string; icon: LogoImageDataInterface; details: string; number: string; }[]; }