/** * @author Tümay Çeber * @link https://github.com/brendtumi/bkmexpress * @license http://opensource.org/licenses/MIT * @date 26.04.2017 */ import {RawBexResponse} from "../bexResponse"; import {PaymentResultResponse, PosData} from "../paymentResultResponse"; export class NonceResultResponse extends PaymentResultResponse { private error: string; public constructor(obj?: RawBexResponse) { super(obj); this.Error = obj.error; } get Error(): string { return this.error; } set Error(error: string) { this.error = error; } }