Table 9106 SharePoint Folder, source in 28
Source242526272829metadata in 28
src/System Application/App/SharePoint/src/model/folder/SharePointFolder.Table.al75 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Integration.Sharepoint;
/// <summary>
/// Holds information about folder entity.
/// </summary>
table 9106 "SharePoint Folder"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;
DataClassification = SystemMetadata; // Data classification is SystemMetadata as the table is temporary
Caption = 'SharePoint Folder';
TableType = Temporary;
fields
{
field(1; "Unique Id"; Guid)
{
Caption = 'Unique Id';
}
field(2; Name; Text[250])
{
Caption = 'Title';
}
field(3; Created; DateTime)
{
Caption = 'Created';
}
field(4; "Item Count"; Integer)
{
Caption = 'Item Count';
}
field(5; Exists; Boolean)
{
Caption = 'Exists';
}
field(6; "Server Relative Url"; Text[2048])
{
Caption = 'Server Relative Url';
}
field(7; OdataId; Text[2048])
{
Caption = 'Odata.Id';
}
field(8; OdataType; Text[2048])
{
Caption = 'Odata.Type';
}
field(9; OdataEditLink; Text[2048])
{
Caption = 'Odata.EditLink';
}
}
keys
{
key(PK; "Unique Id")
{
Clustered = true;
}
}
}