1syntax = "proto3"; 2 3package com.android.odp.module.common.proto; 4 5import "google/protobuf/timestamp.proto"; 6 7option java_multiple_files = true; 8option java_package = "com.android.odp.module.common.proto"; 9 10 11 12/** 13 * Encompasses metadata associated with aggregated error data reporting. 14 */ 15message ErrorReportingMetadata { 16 /** 17 * Timestamp corresponding to when the entity associated with this metadata 18 * was created. 19 */ 20 google.protobuf.Timestamp last_successful_upload = 1; 21} 22