UNPKG

@mrboombastic/node-przelewy24

Version:

A simple library for connecting przelewy24 service

51 lines 964 B
/** * Refund result * * @export * @interface RefundResult */ export interface RefundResult { /** * Transaction order ID from Przelewy24 * * @type {string} * @memberof RefundResult */ orderId: string; /** * Transaction session ID from the Partner’s system * * @type {string} * @memberof RefundResult */ sessionId: string; /** * Amount of refund * * @type {string} * @memberof RefundResult */ amount: string; /** * Transaction description * * @type {string} * @memberof RefundResult */ description: string; /** * Was refund attempt successful? * * @type {boolean} * @memberof RefundResult */ status: boolean; /** * Text description of successful refund * * @type {string} * @memberof RefundResult */ message: string; } //# sourceMappingURL=RefundResult.d.ts.map