blob: 89e6c1386408b539d5b5ec698137aa298918e619 [file] [log] [blame]
Fan Zhang8985efe2018-10-09 16:12:34 -07001syntax = "proto2";
2
3package com.android.settings.intelligence;
4option java_outer_classname = "ContextualCardProto";
5
6message ContextualCardList {
7 repeated ContextualCard card = 1;
8}
9
10message ContextualCard {
11 // Slice uri of the contextual card
12 optional string sliceUri = 1;
13
14 // {@link ContextualCardCategory}.
15 optional int32 category = 2;
16
17 // Name of the card. It should be identical in every app
18 optional string cardName = 3;
19}