UNPKG

@circle-fin/circle-sdk

Version:
37 lines (36 loc) 1.05 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ApplePayTokenRsaHeader */ export interface ApplePayTokenRsaHeader { /** * Optional. Hash of the applicationData property of the original PKPaymentRequest object. If the value of that property is null, this key is omitted. * @type {string} * @memberof ApplePayTokenRsaHeader */ applicationData?: string; /** * The symmetric key wrapped using your RSA public key. * @type {string} * @memberof ApplePayTokenRsaHeader */ wrappedKey: string; /** * Hash of the X.509 encoded public key bytes of the merchant’s certificate. * @type {string} * @memberof ApplePayTokenRsaHeader */ publicKeyHash: string; /** * Transaction identifier, generated on the device. * @type {string} * @memberof ApplePayTokenRsaHeader */ transactionId: string; }