REST.Backend.ParseApi.TParseApi.TObjectID

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

    TObjectID = record
    private
      FCreatedAt: TDateTime;
      FUpdatedAt: TDateTime;
      FObjectID: string;
      FBackendClassName: string;
    public
      constructor Create(const ABackendClassName: string; AObjectID: string);
      property CreatedAt: TDateTime read FCreatedAt;
      property UpdatedAt: TDateTime read FUpdatedAt;
      property ObjectID: string read FObjectID;
      property BackendClassName: string read FBackendClassName;
    end;

C++

struct DECLSPEC_DRECORD TObjectID
{
private:
    System::TDateTime FCreatedAt;
    System::TDateTime FUpdatedAt;
    System::UnicodeString FObjectID;
    System::UnicodeString FBackendClassName;
public:
    __fastcall TObjectID(const System::UnicodeString ABackendClassName, System::UnicodeString AObjectID);
    __property System::TDateTime CreatedAt = {read=FCreatedAt};
    __property System::TDateTime UpdatedAt = {read=FUpdatedAt};
    __property System::UnicodeString ObjectID = {read=FObjectID};
    __property System::UnicodeString BackendClassName = {read=FBackendClassName};
    TObjectID() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
REST.Backend.ParseApi.pas
REST.Backend.ParseApi.hpp
REST.Backend.ParseApi TParseApi

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.