rasa.signal-service-java.2.15.3_unofficial_108.source-code.ResumableUploads.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java, unofficial fork
// Proto schema formatted by Wire, do not edit.
// Source: ResumableUploads.proto
syntax = "proto3";
option java_package = "org.signal.protos.resumableuploads";
message ResumableUpload {
bytes secretKey = 1;
bytes iv = 2;
string cdnKey = 3;
uint32 cdnNumber = 4;
string location = 5;
uint64 timeout = 6;
repeated Header headers = 7;
message Header {
string key = 1;
string value = 2;
}
}