HTTP
class HTTP( val method: Trace.HTTP.Method = Method.UNKNOWN, request_headers: Map<String, Trace.HTTP.Values> = emptyMap(), response_headers: Map<String, Trace.HTTP.Values> = emptyMap(), val status_code: Int = 0, unknownFields: ByteString = ByteString.EMPTY) : Message<Trace.HTTP, Nothing>
Constructors
Link copied to clipboard
constructor( method: Trace.HTTP.Method = Method.UNKNOWN, request_headers: Map<String, Trace.HTTP.Values> = emptyMap(), response_headers: Map<String, Trace.HTTP.Values> = emptyMap(), status_code: Int = 0, unknownFields: ByteString = ByteString.EMPTY)
Types
Properties
Functions
Link copied to clipboard
fun copy( method: Trace.HTTP.Method = this.method, request_headers: Map<String, Trace.HTTP.Values> = this.request_headers, response_headers: Map<String, Trace.HTTP.Values> = this.response_headers, status_code: Int = this.status_code, unknownFields: ByteString = this.unknownFields): Trace.HTTP
Link copied to clipboard