REST.Backend.EMSApi.TEMSClientAPI.TPushStatus

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TPushStatus = record
    private
      FAndroid: Integer;
      FIOS: Integer;
    public
      constructor Create(AIOS, AAndroid: Integer);
      property QueuedIOS: Integer read FIOS;
      property QueuedAndroid: Integer read FAndroid;
    end;

C++

struct DECLSPEC_DRECORD TPushStatus
{
private:
    int FAndroid;
    int FIOS;
public:
    __fastcall TPushStatus(int AIOS, int AAndroid);
    __property int QueuedIOS = {read=FIOS};
    __property int QueuedAndroid = {read=FAndroid};
    TPushStatus() {}
};

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!