Interface representing a Confluence page.

interface ConfluencePage {
    body: {
        storage: {
            value: string;
        };
    };
    id: string;
    status: string;
    title: string;
    type: string;
    version?: {
        by: {
            displayName: string;
        };
        number: number;
        when: string;
    };
}

Properties

body: {
    storage: {
        value: string;
    };
}

Type declaration

  • storage: {
        value: string;
    }
    • value: string
id: string
status: string
title: string
type: string
version?: {
    by: {
        displayName: string;
    };
    number: number;
    when: string;
}

Type declaration

  • by: {
        displayName: string;
    }
    • displayName: string
  • number: number
  • when: string

Generated using TypeDoc