@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 1.16 kB
TypeScript
export declare class TerminalReassignmentRequest {
/**
* The unique identifier of the company account to which the terminal is reassigned.
*/
'companyId'?: string;
/**
* Must be specified when reassigning terminals to a merchant account: - If set to **true**, reassigns terminals to the inventory of the merchant account and the terminals cannot process transactions. - If set to **false**, reassigns terminals directly to the merchant account and the terminals can process transactions.
*/
'inventory'?: boolean;
/**
* The unique identifier of the merchant account to which the terminal is reassigned. When reassigning terminals to a merchant account, you must specify the `inventory` field.
*/
'merchantId'?: string;
/**
* The unique identifier of the store to which the terminal is reassigned.
*/
'storeId'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}