@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
44 lines (43 loc) • 1.29 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { UpdateBillingDetails } from "./update-billing-details";
/**
*
* @export
* @interface CardUpdate
*/
export interface CardUpdate {
/**
* Universally unique identifier (UUID v4) of the public key used in encryption. NOTE the sandbox environment uses the default value of `key1`. For this reason the example supplied is `key1` rather than a UUID.
* @type {string}
* @memberof CardUpdate
*/
keyId: string;
/**
* PGP encrypted base64 encoded string. Contains CVV. * **CVV (Card Verification Number)**: Three or four digit security code. REQUIRED\'
* @type {string}
* @memberof CardUpdate
*/
encryptedData: string;
/**
* Two digit number representing the card\'s expiration month.
* @type {number}
* @memberof CardUpdate
*/
expMonth?: number;
/**
* Four digit number representing the card\'s expiration year.
* @type {number}
* @memberof CardUpdate
*/
expYear?: number;
/**
*
* @type {UpdateBillingDetails}
* @memberof CardUpdate
*/
billingDetails?: UpdateBillingDetails;
}