/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface PageBodyWrite { /** * Type of content representation used for the value field. */ representation?: "storage" | "atlas_doc_format" | "wiki"; /** * Body of the page, in the format found in the representation field. */ value?: string; } //# sourceMappingURL=PageBodyWrite.d.ts.map