REST.Backend.ParseApi.TParseApi.TUser

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TUser = record
    private
      FCreatedAt: TDateTime;
      FUpdatedAt: TDateTime;
      FObjectID: string;
      FUserName: string;
    public
      constructor Create(const AUserName: string);
      property CreatedAt: TDateTime read FCreatedAt;
      property UpdatedAt: TDateTime read FUpdatedAt;
      property ObjectID: string read FObjectID;
      property UserName: string read FUserName;
    end;

C++

struct DECLSPEC_DRECORD TUser
{
private:
    System::TDateTime FCreatedAt;
    System::TDateTime FUpdatedAt;
    System::UnicodeString FObjectID;
    System::UnicodeString FUserName;
public:
    __fastcall TUser(const System::UnicodeString AUserName);
    __property System::TDateTime CreatedAt = {read=FCreatedAt};
    __property System::TDateTime UpdatedAt = {read=FUpdatedAt};
    __property System::UnicodeString ObjectID = {read=FObjectID};
    __property System::UnicodeString UserName = {read=FUserName};
    TUser() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
REST.Backend.ParseApi.pas
REST.Backend.ParseApi.hpp
REST.Backend.ParseApi TParseApi

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!