import { ElementChildNodesOfSection } from "./ElementChildNodesOfSection"; import { NotebookManagementEntityGuid } from "./NotebookManagementEntityGuid"; import { TopologyCreationTimeStamp } from "./TopologyCreationTimeStamp"; /** * The jcidSectionNode structure specifies the properties of a section (section 1.3.1). The value of the JCID element, as specified in [MS-ONESTORE], for this property set is "0x00060007". */ export type SectionNode = { /** * A NotebookManagementEntityGuid element (section 2.2.58) that specifies the identifier of the section. This value SHOULD<1> be ignored. */ guid: NotebookManagementEntityGuid; /** * An ElementChildNodesOfSection element (section 2.2.48) that specifies the child nodes of the section. */ childNodes: ElementChildNodesOfSection; /** * A TopologyCreationTimeStamp element (section 2.3.32) that specifies when the section was created */ timestamp: TopologyCreationTimeStamp; };