Files
adyen-node-api-library/src/typings/payments/sDKEphemPubKey.ts
Wouter Boereboom a479c38bf1 Pw 6663/fix checkout + payments services (#903)
* merge modifications service with checkout service and add cardDetails endpoint to checkout service

* add classic integration/payment API types and service to library

* add unit test for cardDetails endpoint

* fix unit tests for binlookup

* PW-6663: Do not run model generation on every PR

* remove inconsistent e2e/unit hybrid test for binlookup

Co-authored-by: Michael Paul <michael@michaelpaul.com.br>
2022-07-06 09:51:49 +02:00

34 lines
671 B
TypeScript

/*
* The version of the OpenAPI document: v68
* Contact: developer-experience@adyen.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
export class SDKEphemPubKey {
/**
* The `crv` value as received from the 3D Secure 2 SDK.
*/
'crv'?: string;
/**
* The `kty` value as received from the 3D Secure 2 SDK.
*/
'kty'?: string;
/**
* The `x` value as received from the 3D Secure 2 SDK.
*/
'x'?: string;
/**
* The `y` value as received from the 3D Secure 2 SDK.
*/
'y'?: string;
}