@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.11 kB
TypeScript
export declare class PinChangeRequest {
/**
* The symmetric session key that you encrypted with the [public key](https://docs.adyen.com/api-explorer/balanceplatform/2/get/publicKey) that you received from Adyen.
*/
"encryptedKey": string;
/**
* The encrypted [PIN block](https://www.pcisecuritystandards.org/glossary/pin-block).
*/
"encryptedPinBlock": string;
/**
* The unique identifier of the payment instrument, which is the card for which you are managing the PIN.
*/
"paymentInstrumentId": string;
/**
* The 16-digit token that you used to generate the `encryptedPinBlock`.
*/
"token": string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}