UNPKG

@circle-fin/circle-sdk

Version:
31 lines (30 loc) 959 B
/** * 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 GooglePayToken */ export interface GooglePayToken { /** * Verifies the message came from Google. The signature is created using ECDSA. * @type {string} * @memberof GooglePayToken */ signature: string; /** * Identifies which encryption/signing scheme created this message. In this way, the protocol can evolve over time if needed. If it is not set, assume ECv0. * @type {string} * @memberof GooglePayToken */ protocolVersion: string; /** * A serialized JSON string containing the encryptedMessage, ephemeralPublicKey, and tag. To simplify the signature verification process, this value is serialized. * @type {string} * @memberof GooglePayToken */ signedMessage: string; }