Enum 5224 Employee Gender

App
Base Application
Namespace
Microsoft.HumanResources.Employee
Versions
17-28

Values, 6

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/HumanResources/Employee/EmployeeGender.Enum.al36 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 Microsoft.HumanResources.Employee;

enum 5224 "Employee Gender"
{
    Extensible = true;
    AssignmentCompatibility = true;

    value(0; " ")
    {
    }
    value(1; Female)
    {
        Caption = 'Female';
    }
    value(2; Male)
    {
        Caption = 'Male';
    }
    value(3; "Non-binary")
    {
        Caption = 'Non-binary/gender diverse';
    }
    value(4; "Self-Described")
    {
        Caption = 'Self-Described';
    }
    value(5; "I don’t wish to answer")
    {
        Caption = 'I don''t wish to answer';
    }
}