/*
* MIT License
*
* Copyright (c) 2023 OrdinaryRoad
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: douyin_websocket_frame.proto
package tech.ordinaryroad.live.chat.client.douyin.protobuf;
public interface douyin_websocket_frameOrBuilder extends
// @@protoc_insertion_point(interface_extends:tech.ordinaryroad.live.chat.client.douyin.protobuf.douyin_websocket_frame)
com.google.protobuf.MessageOrBuilder {
/**
* uint64 seq_id = 1;
* @return The seqId.
*/
long getSeqId();
/**
* uint64 log_id = 2;
* @return The logId.
*/
long getLogId();
/**
* uint64 service = 3;
* @return The service.
*/
long getService();
/**
* uint64 method = 4;
* @return The method.
*/
long getMethod();
/**
* map<string, string> headers_list = 5;
*/
int getHeadersListCount();
/**
* map<string, string> headers_list = 5;
*/
boolean containsHeadersList(
java.lang.String key);
/**
* Use {@link #getHeadersListMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getHeadersList();
/**
* map<string, string> headers_list = 5;
*/
java.util.Map
getHeadersListMap();
/**
* map<string, string> headers_list = 5;
*/
/* nullable */
java.lang.String getHeadersListOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
* map<string, string> headers_list = 5;
*/
java.lang.String getHeadersListOrThrow(
java.lang.String key);
/**
* string payload_encoding = 6;
* @return The payloadEncoding.
*/
java.lang.String getPayloadEncoding();
/**
* string payload_encoding = 6;
* @return The bytes for payloadEncoding.
*/
com.google.protobuf.ByteString
getPayloadEncodingBytes();
/**
* string payload_type = 7;
* @return The payloadType.
*/
java.lang.String getPayloadType();
/**
* string payload_type = 7;
* @return The bytes for payloadType.
*/
com.google.protobuf.ByteString
getPayloadTypeBytes();
/**
* bytes payload = 8;
* @return The payload.
*/
com.google.protobuf.ByteString getPayload();
}