com.google.rpc.HttpHeaderOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/rpc/http.proto
// Protobuf Java Version: 3.25.4
package com.google.rpc;
public interface HttpHeaderOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.rpc.HttpHeader)
com.google.protobuf.MessageOrBuilder {
/**
*
* The HTTP header key. It is case insensitive.
*
*
* string key = 1;
* @return The key.
*/
java.lang.String getKey();
/**
*
* The HTTP header key. It is case insensitive.
*
*
* string key = 1;
* @return The bytes for key.
*/
com.google.protobuf.ByteString
getKeyBytes();
/**
*
* The HTTP header value.
*
*
* string value = 2;
* @return The value.
*/
java.lang.String getValue();
/**
*
* The HTTP header value.
*
*
* string value = 2;
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
}