REST.Backend.EMSApi.TEMSClientAPI.TInstallation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TInstallation = record
    private
      FCreatedAt: TDateTime;
      FUpdatedAt: TDateTime;
      FInstallationID: string;
      FCreator: string;
    public
      constructor Create(const AInstallationID: string);
      property CreatedAt: TDateTime read FCreatedAt;
      property UpdatedAt: TDateTime read FUpdatedAt;
      property InstallationID: string read FInstallationID;
      property Creator: string read FCreator;
    end;

C++

struct DECLSPEC_DRECORD TInstallation
{
private:
    System::TDateTime FCreatedAt;
    System::TDateTime FUpdatedAt;
    System::UnicodeString FInstallationID;
    System::UnicodeString FCreator;
public:
    __fastcall TInstallation(const System::UnicodeString AInstallationID);
    __property System::TDateTime CreatedAt = {read=FCreatedAt};
    __property System::TDateTime UpdatedAt = {read=FUpdatedAt};
    __property System::UnicodeString InstallationID = {read=FInstallationID};
    __property System::UnicodeString Creator = {read=FCreator};
    TInstallation() {}
};

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!