UNPKG

@iotize/device-client.js

Version:

IoTize Device client for Javascript

23 lines (22 loc) 558 B
/** * * <p> * Model representing a response application protocol data unit (response APDU) */ export declare class APDUResponse { /** * Command processing status, e.g. 90 00 (hexadecimal) indicates success */ status: Uint8Array; /** * Response data */ data: Uint8Array; constructor(); getData(): Uint8Array; getStatus(): Uint8Array; setStatus(status: Uint8Array): this; setData(data: Uint8Array): this; statusEquals(status: Uint8Array): boolean; toString(): string; }