1. OG data type - PersonInfo

    Article: AN0001740Updated:

    This object is a simple version of the object Person.

    Object properties 

    Name Description
    int Id User Id.
    string DisplayName Full name of the user. It corresponds to the property Person.FullName.
    PersonInfo(int id, string displayName) Object constructor.
    static PersonInfo Create(int? id, string fullName) Static function creating PersonInfo instance from id and user name.
    static PersonInfo Create(Person person) Static function creating PersonInfo instance from object Person.

     

×