REST.Backend.KinveyApi.TKinveyApi.TFile

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

    TFile = record
    private
      FID: string;
      FFileName: string;
      FDownloadURL: string;
      FExpiresAt: TDateTime;
    public
      constructor Create(const AID: string);
      property FileName: string read FFileName;
      property DownloadURL: string read FDownloadURL;
      property ID: string read FID;
      property ExpiresAt: TDateTime read FExpiresAt;
    end;

C++

struct DECLSPEC_DRECORD TFile
{
private:
    System::UnicodeString FID;
    System::UnicodeString FFileName;
    System::UnicodeString FDownloadURL;
    System::TDateTime FExpiresAt;
public:
    __fastcall TFile(const System::UnicodeString AID);
    __property System::UnicodeString FileName = {read=FFileName};
    __property System::UnicodeString DownloadURL = {read=FDownloadURL};
    __property System::UnicodeString ID = {read=FID};
    __property System::TDateTime ExpiresAt = {read=FExpiresAt};
    TFile() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
REST.Backend.KinveyApi.pas
REST.Backend.KinveyApi.hpp
REST.Backend.KinveyApi TKinveyApi


Beschreibung

TFile ist ein Record mit vom Cloud-Dienst abgerufenen Informationen über eine Datei.

Siehe auch