Exemplo n.º 1
0
 public GvApiResponse(string version, string request, string requestId, GvApiError error)
 {
     this.version   = version;
     this.request   = request;
     this.requestId = requestId;
     this.error     = error;
 }
Exemplo n.º 2
0
 public GvApiExportResponse(string version, string request, string requestId, GvApiError error,
                            GvApiExportResponseData data) : base(version, request, requestId, error)
 {
     this.data = data;
 }