github.com/craicoverflow/tyk@v2.9.6-rc3+incompatible/coprocess/proto/coprocess_mini_request_object.proto (about)

     1  syntax = "proto3";
     2  
     3  import "coprocess_return_overrides.proto";
     4  // import "coprocess_common.proto";
     5  
     6  package coprocess;
     7  
     8  message MiniRequestObject {
     9    map<string, string> headers = 1;
    10    map<string, string> set_headers = 2;
    11    repeated string delete_headers = 3;
    12    string body = 4;
    13    string url = 5;
    14    map<string, string> params = 6;
    15    map<string, string> add_params = 7;
    16    map<string, string> extended_params = 8;
    17    repeated string delete_params = 9;
    18    ReturnOverrides return_overrides = 10;
    19    string method = 11;
    20    string request_uri = 12;
    21    string scheme = 13;
    22    bytes raw_body = 14;
    23  }