Skip to content

Commit

Permalink
PR Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t committed Sep 24, 2024
1 parent fdb2251 commit 093e6b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions proto/cmp/types/v1/inclusivity.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
syntax = "proto3";

package cmp.types.v1;

// An Option to specify if an item is included or not included in the context
//
// ![Diagram](https://storage.googleapis.com/docs-cmp-files/diagrams/proto/cmp/types/v1/inclusivity.proto.dot.xs.svg)
// [Open Message Diagram](https://storage.googleapis.com/docs-cmp-files/diagrams/proto/cmp/types/v1/inclusivity.proto.dot.svg)
enum Inclusivity {
INCLUSIVITY_UNSPECIFIED = 0;
INCLUSIVITY_INCLUDED = 1;
INCLUSIVITY_NOT_INCLUDED = 2;
}

0 comments on commit 093e6b8

Please sign in to comment.