/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Confluence Page object */ export interface ConfluencePage { /** Page title */ title: string; /** Page content (storage format) */ body: string; /** Child pages */ children?: Klavis.ConfluencePage[]; /** Comments on this page */ comments?: Klavis.ConfluenceComment[]; }