@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 1.46 kB
TypeScript
export declare class FindTerminalResponse {
/**
* The company account that the terminal is associated with. If this is the only account level shown in the response, the terminal is assigned to the inventory of the company account.
*/
'companyAccount': string;
/**
* The merchant account that the terminal is associated with. If the response doesn\'t contain a `store` the terminal is assigned to this merchant account.
*/
'merchantAccount'?: string;
/**
* Boolean that indicates if the terminal is assigned to the merchant inventory. This is returned when the terminal is assigned to a merchant account. - If **true**, this indicates that the terminal is in the merchant inventory. This also means that the terminal cannot be boarded. - If **false**, this indicates that the terminal is assigned to the merchant account as an in-store terminal. This means that the terminal is ready to be boarded, or is already boarded.
*/
'merchantInventory'?: boolean;
/**
* The store code of the store that the terminal is assigned to.
*/
'store'?: string;
/**
* The unique terminal ID.
*/
'terminal': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}