/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The WikiPage model object represent a single user managed wiki page. * @export * @interface WikiPage */ export interface WikiPage { /** * The ID of this wiki page. * @type {string} * @memberof WikiPage */ id?: string; /** * The etag of this object * @type {string} * @memberof WikiPage */ etag?: string; /** * The timestamp when this page was created. * @type {string} * @memberof WikiPage */ createdOn?: string; /** * The id of the user that created this page. * @type {string} * @memberof WikiPage */ createdBy?: string; /** * The timestamp when this page was last modified. * @type {string} * @memberof WikiPage */ modifiedOn?: string; /** * The id of the user that last modified this page. * @type {string} * @memberof WikiPage */ modifiedBy?: string; /** * When set, the WikiPage is a sub-page of the indicated parent WikiPage. * @type {string} * @memberof WikiPage */ parentWikiId?: string; /** * The title of this page. * @type {string} * @memberof WikiPage */ title?: string; /** * The markdown for this wiki page. * @type {string} * @memberof WikiPage */ markdown?: string; /** * The list of attachment file handle ids of this page. * @type {Array} * @memberof WikiPage */ attachmentFileHandleIds?: Array; } /** * Check if a given object implements the WikiPage interface. */ export declare function instanceOfWikiPage(value: object): value is WikiPage; export declare function WikiPageFromJSON(json: any): WikiPage; export declare function WikiPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): WikiPage; export declare function WikiPageToJSON(json: any): WikiPage; export declare function WikiPageToJSONTyped(value?: WikiPage | null, ignoreDiscriminator?: boolean): any;