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