0002-Added-field-id-to-rst.hri.PersonHypothesis.patch

J. Moringen, 01/30/2017 02:47 PM

Download (1 KB)

View differences:

proto/sandbox/rst/hri/PersonHypothesis.proto
75 75
    optional Gender gender = 42 [default = UNKNOWN];
76 76

  
77 77
    /**
78
     * A unique, persistent id (a RFC 4122 UUID) for the person.
79
     *
80
     * For this encoding, the encoded UUID is 16 bytes long.
81
     */
82
    // @constraint(len(value) = 16)
83
    optional bytes id = 43;
84

  
85
    /**
78 86
     * The person's name. Empty string means unknown or undecided.
79 87
     */
80 88
    optional string name = 44;
81
-