/** * @author Tümay Çeber * @link https://github.com/brendtumi/bkmexpress * @license http://opensource.org/licenses/MIT * @date 26.04.2017 */ import {BexResponse, RawBexResponse} from "../bexResponse"; export class NonceReceivedResponse extends BexResponse { public status: string = "ok"; public constructor(obj?: RawBexResponse) { super(obj); this.Data = this.status; } }