import { MdkDtoBase } from "../MdkDtoBase"; import { IResponseDto } from "../../tgMdk/IResponseDto"; import { MasterInfos } from "./MasterInfos"; import { OrderInfos } from "./OrderInfos"; export declare class SearchResponseDto extends MdkDtoBase implements IResponseDto { private _resultJson; serviceType: string; mstatus: string; vResultCode: string; merrMsg: string; orderId: string; marchTxn: string; custTxn: string; txnVersion: string; overMaxCountFlag: string; masterInfos: MasterInfos; searchCount: string; orderInfos: OrderInfos; get resultJson(): string; set resultJson(value: string); }