REST.Backend.EMSApi.TEMSClientAPI.TGroup
Delphi
    TGroup = record
    private
      FCreatedAt: TDateTime;
      FUpdatedAt: TDateTime;
      FGroupName: string;
      FCreator: string;
    public
      constructor Create(const AGroupName: string);
      property CreatedAt: TDateTime read FCreatedAt;
      property UpdatedAt: TDateTime read FUpdatedAt;
      property GroupName: string read FGroupName;
      property Creator: string read FCreator;
    end;
C++
struct DECLSPEC_DRECORD TGroup
{
private:
    System::TDateTime FCreatedAt;
    System::TDateTime FUpdatedAt;
    System::UnicodeString FGroupName;
    System::UnicodeString FCreator;
public:
    __fastcall TGroup(const System::UnicodeString AGroupName);
    __property System::TDateTime CreatedAt = {read=FCreatedAt};
    __property System::TDateTime UpdatedAt = {read=FUpdatedAt};
    __property System::UnicodeString GroupName = {read=FGroupName};
    __property System::UnicodeString Creator = {read=FCreator};
    TGroup() {}
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | REST.Backend.EMSApi.pas REST.Backend.EMSApi.hpp | REST.Backend.EMSApi | TEMSClientAPI | 
Description
Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!