aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/tvmauth/client/misc/fetch_result.h
blob: c45449947743adf4ab84202b030cd4480f8906d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once 
 
#include <library/cpp/http/simple/http_client.h> 
 
namespace NTvmAuth::NUtils { 
    struct TFetchResult { 
        TKeepAliveHttpClient::THttpCode Code; 
        THttpHeaders Headers; 
        TStringBuf Path; 
        TString Response; 
        TString RetrySettings; 
    }; 
}