Signal-Android/app/src/main/protowire/JobData.proto

43 lines
839 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package signal;
import "ResumableUploads.proto";
option java_package = "org.thoughtcrime.securesms.jobs.protos";
option java_multiple_files = true;
message CallSyncEventJobRecord {
uint64 recipientId = 1;
reserved 2;
uint64 callId = 3;
uint32 direction = 4;
uint32 event = 5;
}
message CallSyncEventJobData {
repeated CallSyncEventJobRecord records = 1;
}
message CallLinkRefreshSinceTimestampJobData {
uint64 timestamp = 1;
}
message CallLogEventSendJobData {
bytes callLogEvent = 1;
}
message CallLinkUpdateSendJobData {
string callLinkRoomId = 1;
}
message AttachmentUploadJobData {
2024-01-09 09:21:23 -05:00
uint64 attachmentId = 1;
reserved /*attachmentUniqueId*/ 2;
optional ResumableUpload uploadSpec = 3;
}
message PreKeysSyncJobData {
bool forceRefreshRequested = 1;
}