Data.Cloud.AmazonAPI.TAmazonBatchRow

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TAmazonBatchRow = record
    RowId: string;
    Row: TCloudTableRow;
    ReplaceAll: Boolean;
    class function Create(const RowId: string; Row: TCloudTableRow;
                          ReplaceAll: Boolean = True): TAmazonBatchRow; static;
  end;

C++

struct DECLSPEC_DRECORD TAmazonBatchRow
{
public:
    System::UnicodeString RowId;
    Data::Cloud::Cloudapi::TCloudTableRow* Row;
    bool ReplaceAll;
    static TAmazonBatchRow __fastcall Create(const System::UnicodeString RowId, Data::Cloud::Cloudapi::TCloudTableRow* Row, bool ReplaceAll = true);
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI


Beschreibung

Repräsentiert eine einzelne, in einer Stapelausführung zu aktualisierende Zeile.

Der Record TAmazonBatchRow repräsentiert eine einzelne, in einer Stapelausführung zu aktualisierende Zeile.

Siehe auch