1syntax = "proto2";
2
3option java_package = "com.android.dialer.enrichedcall.historyquery.proto";
4option java_multiple_files = true;
5option optimize_for = LITE_RUNTIME;
6
7
8package com.android.dialer.enrichedcall.historyquery.proto;
9
10// Holds data that was used in an enrichedcall in the past
11message HistoryResult {
12  optional Type type = 1;
13  optional string text = 2;
14  optional string image_uri = 4;
15  optional string image_content_type = 5;
16  optional int64 timestamp = 7;
17
18  enum Type {
19    INCOMING_CALL_COMPOSER = 1;
20    OUTGOING_CALL_COMPOSER = 2;
21    INCOMING_POST_CALL = 3;
22    OUTGOING_POST_CALL = 4;
23  }
24}
25