Class Notebook

Notebook class

https://docs.microsoft.com/en-us/graph/api/resources/notebook?view=graph-rest-1.0 A OneNote notebook.

public class Notebook

Constructors

NameDescription
Notebook()The default constructor.

Properties

NameDescription
CreatedBy { get; }Identity of the user, device, and application which created the item. Read-only.
CreatedDateTime { get; }The date and time when the notebook was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ‘2014-01-01T00:00:00Z’. Read-only.
DisplayName { get; set; }The name of the notebook.
Id { get; }The unique identifier of the notebook. Read-only.
IsCreatedDateTimeSpecified { get; set; }Indicates whether CreatedDateTime property is specified.
IsDefault { get; }Indicates whether this is the user’s default notebook. Read-only.
IsDefaultSpecified { get; set; }Indicates whether IsDefault property is specified.
IsLastModifiedDateTimeSpecified { get; set; }Indicates whether LastModifiedDateTime property is specified.
IsShared { get; }Indicates whether the notebook is shared. If true, the contents of the notebook can be seen by people other than the owner. Read-only.
IsSharedSpecified { get; set; }Indicates whether IsShared property is specified.
LastModifiedBy { get; }Identity of the user, device, and application which created the item. Read-only.
LastModifiedDateTime { get; }The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ‘2014-01-01T00:00:00Z’. Read-only.
Links { get; set; }Links for opening the notebook. The oneNoteClientURL link opens the notebook in the OneNote native client if it’s installed. The oneNoteWebURL link opens the notebook in OneNote on the web.
SectionGroupsUrl { get; }The URL for the sectionGroups navigation property, which returns all the section groups in the notebook. Read-only.
SectionsUrl { get; }The URL for the sections navigation property, which returns all the sections in the notebook. Read-only.
Self { get; }The endpoint where you can get details about the notebook. Read-only.
UserRole { get; }Possible values are: Owner, Contributor, Reader, None. Owner represents owner-level access to the notebook. Contributor represents read/write access to the notebook. Reader represents read-only access to the notebook. Read-only.

See Also