Table 1433 Net Promoter Score, source in 27

Source242526272829metadata in 27

src/System Application/App/Satisfaction Survey/src/NetPromoterScore.Table.al42 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.Feedback;

table 1433 "Net Promoter Score"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    DataPerCompany = false;
    ReplicateData = false;

    fields
    {
        field(1; "User SID"; Guid)
        {
            DataClassification = EndUserPseudonymousIdentifiers;
        }
        field(4; "Last Request Time"; DateTime)
        {
            DataClassification = SystemMetadata;
        }
        field(5; "Send Request"; Boolean)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "User SID")
        {
            Clustered = true;
        }
    }

}