@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
26 lines (25 loc) • 1.05 kB
TypeScript
import { EventUrl } from './eventUrl';
export declare class Connectivity {
/**
* Indicates the status of the SIM card in the payment terminal. Can be updated and received only at terminal level, and only for models that support cellular connectivity. Possible values: * **ACTIVATED**: the SIM card is activated. Cellular connectivity may still need to be enabled on the terminal itself, in the **Network** settings. * **INVENTORY**: the SIM card is not activated. The terminal can\'t use cellular connectivity.
*/
'simcardStatus'?: Connectivity.SimcardStatusEnum;
'terminalIPAddressURL'?: EventUrl | null;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Connectivity {
enum SimcardStatusEnum {
Activated = "ACTIVATED",
Inventory = "INVENTORY"
}
}