@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.21 kB
TypeScript
export declare class TerminalReassignmentTarget {
/**
* The unique identifier of the company account to which the terminal is reassigned.
*/
"companyId"?: string;
/**
* Indicates if the terminal is reassigned to the inventory of the merchant account. - If **true**, the terminal is in the inventory of the merchant account and cannot process transactions. - If **false**, the terminal is reassigned directly to the merchant account and can process transactions.
*/
"inventory": boolean;
/**
* The unique identifier of the merchant account to which the terminal is reassigned.
*/
"merchantId"?: string;
/**
* The unique identifier of the store to which the terminal is reassigned.
*/
"storeId"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}