delivery_api.proto 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package maps.fleetengine.delivery.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/api/routing.proto";
  21. import "google/geo/type/viewport.proto";
  22. import "google/maps/fleetengine/delivery/v1/delivery_vehicles.proto";
  23. import "google/maps/fleetengine/delivery/v1/header.proto";
  24. import "google/maps/fleetengine/delivery/v1/tasks.proto";
  25. import "google/protobuf/field_mask.proto";
  26. option go_package = "google.golang.org/genproto/googleapis/maps/fleetengine/delivery/v1;delivery";
  27. option java_multiple_files = true;
  28. option java_outer_classname = "DeliveryApi";
  29. option java_package = "google.maps.fleetengine.delivery.v1";
  30. option objc_class_prefix = "CFED";
  31. option (google.api.resource_definition) = {
  32. type: "fleetengine.googleapis.com/Provider"
  33. pattern: "providers/{provider}"
  34. };
  35. // The Last Mile Delivery service.
  36. service DeliveryService {
  37. option (google.api.default_host) = "fleetengine.googleapis.com";
  38. // Creates and returns a new `DeliveryVehicle`.
  39. rpc CreateDeliveryVehicle(CreateDeliveryVehicleRequest) returns (DeliveryVehicle) {
  40. option (google.api.http) = {
  41. post: "/v1/{parent=providers/*}/deliveryVehicles"
  42. body: "delivery_vehicle"
  43. };
  44. option (google.api.routing) = {
  45. routing_parameters {
  46. field: "parent"
  47. path_template: "{provider_id=providers/*}"
  48. }
  49. };
  50. option (google.api.method_signature) = "parent,delivery_vehicle,delivery_vehicle_id";
  51. }
  52. // Returns the specified `DeliveryVehicle` instance.
  53. rpc GetDeliveryVehicle(GetDeliveryVehicleRequest) returns (DeliveryVehicle) {
  54. option (google.api.http) = {
  55. get: "/v1/{name=providers/*/deliveryVehicles/*}"
  56. };
  57. option (google.api.routing) = {
  58. routing_parameters {
  59. field: "name"
  60. path_template: "{provider_id=providers/*}"
  61. }
  62. };
  63. option (google.api.method_signature) = "name";
  64. }
  65. // Writes updated `DeliveryVehicle` data to Fleet Engine, and assigns
  66. // `Tasks` to the `DeliveryVehicle`. You cannot update the name of the
  67. // `DeliveryVehicle`. You *can* update `remaining_vehicle_journey_segments`
  68. // though, but it must contain all of the `VehicleJourneySegment`s currently
  69. // on the `DeliveryVehicle`. The `task_id`s are retrieved from
  70. // `remaining_vehicle_journey_segments`, and their corresponding `Tasks` are
  71. // assigned to the `DeliveryVehicle` if they have not yet been assigned.
  72. rpc UpdateDeliveryVehicle(UpdateDeliveryVehicleRequest) returns (DeliveryVehicle) {
  73. option (google.api.http) = {
  74. patch: "/v1/{delivery_vehicle.name=providers/*/deliveryVehicles/*}"
  75. body: "delivery_vehicle"
  76. };
  77. option (google.api.routing) = {
  78. routing_parameters {
  79. field: "delivery_vehicle.name"
  80. path_template: "{provider_id=providers/*}"
  81. }
  82. };
  83. option (google.api.method_signature) = "delivery_vehicle,update_mask";
  84. }
  85. // Creates and returns a batch of new `Task` objects.
  86. rpc BatchCreateTasks(BatchCreateTasksRequest) returns (BatchCreateTasksResponse) {
  87. option (google.api.http) = {
  88. post: "/v1/{parent=providers/*}/tasks:batchCreate"
  89. body: "*"
  90. };
  91. option (google.api.routing) = {
  92. routing_parameters {
  93. field: "parent"
  94. path_template: "{provider_id=providers/*}"
  95. }
  96. };
  97. }
  98. // Creates and returns a new `Task` object.
  99. rpc CreateTask(CreateTaskRequest) returns (Task) {
  100. option (google.api.http) = {
  101. post: "/v1/{parent=providers/*}/tasks"
  102. body: "task"
  103. };
  104. option (google.api.routing) = {
  105. routing_parameters {
  106. field: "parent"
  107. path_template: "{provider_id=providers/*}"
  108. }
  109. };
  110. option (google.api.method_signature) = "parent,task,task_id";
  111. }
  112. // Gets information about a `Task`.
  113. rpc GetTask(GetTaskRequest) returns (Task) {
  114. option (google.api.http) = {
  115. get: "/v1/{name=providers/*/tasks/*}"
  116. };
  117. option (google.api.routing) = {
  118. routing_parameters {
  119. field: "name"
  120. path_template: "{provider_id=providers/*}"
  121. }
  122. };
  123. option (google.api.method_signature) = "name";
  124. }
  125. // Gets all `Task`s with a particular `tracking_id`.
  126. rpc SearchTasks(SearchTasksRequest) returns (SearchTasksResponse) {
  127. option (google.api.http) = {
  128. get: "/v1/{parent=providers/*}/tasks:search"
  129. };
  130. option (google.api.routing) = {
  131. routing_parameters {
  132. field: "parent"
  133. path_template: "{provider_id=providers/*}"
  134. }
  135. };
  136. option (google.api.method_signature) = "parent";
  137. }
  138. // Updates `Task` data.
  139. rpc UpdateTask(UpdateTaskRequest) returns (Task) {
  140. option (google.api.http) = {
  141. patch: "/v1/{task.name=providers/*/tasks/*}"
  142. body: "task"
  143. };
  144. option (google.api.routing) = {
  145. routing_parameters {
  146. field: "task.name"
  147. path_template: "{provider_id=providers/*}"
  148. }
  149. };
  150. option (google.api.method_signature) = "task,update_mask";
  151. }
  152. // Gets all `Task`s that meet the specified filtering criteria.
  153. rpc ListTasks(ListTasksRequest) returns (ListTasksResponse) {
  154. option (google.api.http) = {
  155. get: "/v1/{parent=providers/*}/tasks"
  156. };
  157. option (google.api.routing) = {
  158. routing_parameters {
  159. field: "parent"
  160. path_template: "{provider_id=providers/*}"
  161. }
  162. };
  163. option (google.api.method_signature) = "parent";
  164. }
  165. // Gets all `DeliveryVehicle`s that meet the specified filtering criteria.
  166. rpc ListDeliveryVehicles(ListDeliveryVehiclesRequest) returns (ListDeliveryVehiclesResponse) {
  167. option (google.api.http) = {
  168. get: "/v1/{parent=providers/*}/deliveryVehicles"
  169. };
  170. option (google.api.routing) = {
  171. routing_parameters {
  172. field: "parent"
  173. path_template: "{provider_id=providers/*}"
  174. }
  175. };
  176. option (google.api.method_signature) = "parent";
  177. }
  178. }
  179. // The `CreateDeliveryVehicle` request message.
  180. message CreateDeliveryVehicleRequest {
  181. // Optional. The standard Delivery API request header.
  182. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  183. // Required. Must be in the format `providers/{provider}`. The provider must be the
  184. // Google Cloud Project ID. For example, `sample-cloud-project`.
  185. string parent = 3 [(google.api.field_behavior) = REQUIRED];
  186. // Required. The Delivery Vehicle ID must be unique and subject to the following
  187. // restrictions:
  188. //
  189. // * Must be a valid Unicode string.
  190. // * Limited to a maximum length of 64 characters.
  191. // * Normalized according to [Unicode Normalization Form C]
  192. // (http://www.unicode.org/reports/tr15/).
  193. // * May not contain any of the following ASCII characters: '/', ':', '?',
  194. // ',', or '#'.
  195. string delivery_vehicle_id = 4 [(google.api.field_behavior) = REQUIRED];
  196. // Required. The `DeliveryVehicle` entity to create. When creating a new delivery
  197. // vehicle, you may set the following optional fields:
  198. //
  199. // * last_location
  200. // * attributes
  201. //
  202. // Note: The DeliveryVehicle's `name` field is ignored. All other
  203. // DeliveryVehicle fields must not be set; otherwise, an error is returned.
  204. DeliveryVehicle delivery_vehicle = 5 [(google.api.field_behavior) = REQUIRED];
  205. }
  206. // The `GetDeliveryVehicle` request message.
  207. // Next id: 4
  208. message GetDeliveryVehicleRequest {
  209. // Optional. The standard Delivery API request header.
  210. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  211. // Required. Must be in the format
  212. // `providers/{provider}/deliveryVehicles/{delivery_vehicle}`.
  213. // The `provider` must be the Google Cloud Project ID. For example,
  214. // `sample-cloud-project`.
  215. string name = 3 [
  216. (google.api.field_behavior) = REQUIRED,
  217. (google.api.resource_reference) = {
  218. type: "fleetengine.googleapis.com/DeliveryVehicle"
  219. }
  220. ];
  221. }
  222. // The `ListDeliveryVehicles` request message.
  223. message ListDeliveryVehiclesRequest {
  224. // Optional. The standard Delivery API request header.
  225. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  226. // Required. Must be in the format `providers/{provider}`.
  227. // The `provider` must be the Google Cloud Project ID.
  228. // For example, `sample-cloud-project`.
  229. string parent = 3 [
  230. (google.api.field_behavior) = REQUIRED,
  231. (google.api.resource_reference) = {
  232. child_type: "fleetengine.googleapis.com/DeliveryVehicle"
  233. }
  234. ];
  235. // Optional. The maximum number of vehicles to return. The service may return fewer than
  236. // this number. If you don't specify this number, then the server determines
  237. // the number of results to return.
  238. int32 page_size = 4 [(google.api.field_behavior) = OPTIONAL];
  239. // Optional. A page token, received from a previous `ListDeliveryVehicles` call. You
  240. // must provide this in order to retrieve the subsequent page.
  241. //
  242. // When paginating, all other parameters provided to `ListDeliveryVehicles`
  243. // must match the call that provided the page token.
  244. string page_token = 5 [(google.api.field_behavior) = OPTIONAL];
  245. // Optional. A filter query to apply when listing delivery vehicles. See
  246. // http://aip.dev/160 for examples of the filter syntax. If you don't specify
  247. // a value, or if you specify an empty string for the filter, then all
  248. // delivery vehicles are returned.
  249. //
  250. // Note that the only queries supported for `ListDeliveryVehicles` are
  251. // on vehicle attributes (for example, `attributes.<key> = <value>` or
  252. // `attributes.<key1> = <value1> AND attributes.<key2> = <value2>`). Also, all
  253. // attributes are stored as strings, so the only supported comparisons against
  254. // attributes are string comparisons. In order to compare against number or
  255. // boolean values, the values must be explicitly quoted to be treated as
  256. // strings (for example, `attributes.<key> = "10"` or
  257. // `attributes.<key> = "true"`).
  258. //
  259. // The maximum number of restrictions allowed in a filter query is 50. A
  260. // restriction is a part of the query of the form
  261. // `attribute.<KEY> <COMPARATOR> <VALUE>`, for example `attributes.foo = bar`
  262. // is 1 restriction.
  263. string filter = 6 [(google.api.field_behavior) = OPTIONAL];
  264. // Optional. A filter that limits the search area to a rectangle defined by the
  265. // northeast and southwest corner points.
  266. //
  267. // When defined, only vehicles located within the search area are returned.
  268. google.geo.type.Viewport viewport = 7 [(google.api.field_behavior) = OPTIONAL];
  269. }
  270. // The `ListDeliveryVehicles` response message.
  271. message ListDeliveryVehiclesResponse {
  272. // The set of delivery vehicles that meet the requested filtering criteria.
  273. // When no filter is specified, the request returns all delivery vehicles. A
  274. // successful response can also be empty. An empty response indicates that no
  275. // delivery vehicles were found meeting the requested filter criteria.
  276. repeated DeliveryVehicle delivery_vehicles = 1;
  277. // You can pass this token in the `ListDeliveryVehiclesRequest` to continue to
  278. // list results. When all of the results are returned, this field won't be in
  279. // the response, or it will be an empty string.
  280. string next_page_token = 2;
  281. // The total number of delivery vehicles that match the request criteria,
  282. // across all pages.
  283. int64 total_size = 3;
  284. }
  285. // The `UpdateDeliveryVehicle` request message.
  286. message UpdateDeliveryVehicleRequest {
  287. // Optional. The standard Delivery API request header.
  288. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  289. // Required. The `DeliveryVehicle` entity update to apply.
  290. // Note: You cannot update the name of the `DeliveryVehicle`.
  291. DeliveryVehicle delivery_vehicle = 3 [(google.api.field_behavior) = REQUIRED];
  292. // Required. A field mask that indicates which `DeliveryVehicle` fields to
  293. // update. Note that the update_mask must contain at least one field.
  294. //
  295. // This is a comma-separated list of fully qualified names of fields. Example:
  296. // `"remaining_vehicle_journey_segments"`.
  297. google.protobuf.FieldMask update_mask = 4 [(google.api.field_behavior) = REQUIRED];
  298. }
  299. // The `BatchCreateTask` request message.
  300. message BatchCreateTasksRequest {
  301. // Optional. The standard Delivery API request header.
  302. // Note: If you set this field, then the header field in the
  303. // `CreateTaskRequest` messages must either be empty, or it must match this
  304. // field.
  305. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  306. // Required. The parent resource shared by all tasks. This value must be in the format
  307. // `providers/{provider}`. The `provider` must be the Google Cloud Project ID.
  308. // For example, `sample-cloud-project`. The parent field in the
  309. // `CreateTaskRequest` messages must either be empty, or it must match this
  310. // field.
  311. string parent = 3 [
  312. (google.api.field_behavior) = REQUIRED,
  313. (google.api.resource_reference) = {
  314. child_type: "fleetengine.googleapis.com/Task"
  315. }
  316. ];
  317. // Required. The request message that specifies the resources to create.
  318. // Note: You can create a maximum of 500 tasks in a batch.
  319. repeated CreateTaskRequest requests = 4 [(google.api.field_behavior) = REQUIRED];
  320. }
  321. // The `BatchCreateTask` response message.
  322. message BatchCreateTasksResponse {
  323. // The created Tasks.
  324. repeated Task tasks = 1;
  325. }
  326. // The `CreateTask` request message.
  327. message CreateTaskRequest {
  328. // Optional. The standard Delivery API request header.
  329. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  330. // Required. Must be in the format `providers/{provider}`. The `provider` must be the
  331. // Google Cloud Project ID. For example, `sample-cloud-project`.
  332. string parent = 3 [(google.api.field_behavior) = REQUIRED];
  333. // Required. The Task ID must be unique, but it should be not a shipment tracking ID. To
  334. // store a shipment tracking ID, use the `tracking_id` field. Note that
  335. // multiple tasks can have the same `tracking_id`. Task IDs are subject to the
  336. // following restrictions:
  337. //
  338. // * Must be a valid Unicode string.
  339. // * Limited to a maximum length of 64 characters.
  340. // * Normalized according to [Unicode Normalization Form C]
  341. // (http://www.unicode.org/reports/tr15/).
  342. // * May not contain any of the following ASCII characters: '/', ':', '?',
  343. // ',', or '#'.
  344. string task_id = 5 [(google.api.field_behavior) = REQUIRED];
  345. // Required. The Task entity to create.
  346. // When creating a Task, the following fields are required:
  347. //
  348. // * `type`
  349. // * `state` (must be set to `OPEN`)
  350. // * `tracking_id` (must not be set for `UNAVAILABLE` or `SCHEDULED_STOP`
  351. // tasks, but required for all other task types)
  352. // * `planned_location` (optional for `UNAVAILABLE` tasks)
  353. // * `task_duration`
  354. //
  355. // Note: The Task's `name` field is ignored. All other Task fields must not be
  356. // set; otherwise, an error is returned.
  357. Task task = 4 [(google.api.field_behavior) = REQUIRED];
  358. }
  359. // The `GetTask` request message.
  360. message GetTaskRequest {
  361. // Optional. The standard Delivery API request header.
  362. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  363. // Required. Must be in the format `providers/{provider}/tasks/{task}`. The `provider`
  364. // must be the Google Cloud Project ID. For example, `sample-cloud-project`.
  365. string name = 3 [
  366. (google.api.field_behavior) = REQUIRED,
  367. (google.api.resource_reference) = {
  368. type: "fleetengine.googleapis.com/Task"
  369. }
  370. ];
  371. }
  372. // The `SearchTasks` request message that contains the `tracking_id`.
  373. message SearchTasksRequest {
  374. // Optional. The standard Delivery API request header.
  375. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  376. // Required. Must be in the format `providers/{provider}`.
  377. // The provider must be the Google Cloud Project ID. For example,
  378. // `sample-cloud-project`.
  379. string parent = 3 [(google.api.field_behavior) = REQUIRED];
  380. // Required. The identifier of the set of related Tasks being requested. Tracking IDs
  381. // are subject to the following restrictions:
  382. //
  383. // * Must be a valid Unicode string.
  384. // * Limited to a maximum length of 64 characters.
  385. // * Normalized according to [Unicode Normalization Form C]
  386. // (http://www.unicode.org/reports/tr15/).
  387. // * May not contain any of the following ASCII characters: '/', ':', '?',
  388. // ',', or '#'.
  389. string tracking_id = 4 [(google.api.field_behavior) = REQUIRED];
  390. // Optional. The maximum number of Tasks to return. The service may return fewer than
  391. // this value. If you don't specify this value, then the server determines the
  392. // number of results to return.
  393. int32 page_size = 5 [(google.api.field_behavior) = OPTIONAL];
  394. // Optional. A page token, received from a previous `SearchTasks` call. You must
  395. // provide this value to retrieve the subsequent page.
  396. //
  397. // When paginating, all other parameters provided to `SearchTasks` must match
  398. // the call that provided the page token.
  399. string page_token = 6 [(google.api.field_behavior) = OPTIONAL];
  400. }
  401. // The `SearchTasks` response. It contains the set of Tasks that meet the search
  402. // criteria in the `SearchTasksRequest`.
  403. message SearchTasksResponse {
  404. // The set of Tasks for the requested `tracking_id`. A successful response can
  405. // also be empty. An empty response indicates that no Tasks are associated
  406. // with the supplied `tracking_id`.
  407. repeated Task tasks = 1;
  408. // Pass this token in the `SearchTasksRequest` to continue to
  409. // list results. If all results have been returned, then this field is either
  410. // an empty string, or it doesn't appear in the response.
  411. string next_page_token = 2;
  412. }
  413. // The `UpdateTask` request message.
  414. message UpdateTaskRequest {
  415. // Optional. The standard Delivery API request header.
  416. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  417. // Required. The Task associated with the update.
  418. // The following fields are maintained by Fleet Engine. Do not update
  419. // them using `Task.update`.
  420. //
  421. // * `last_location`.
  422. // * `last_location_snappable`.
  423. // * `name`.
  424. // * `remaining_vehicle_journey_segments`.
  425. // * `task_outcome_location_source`.
  426. //
  427. // Note: You cannot change the value of `task_outcome` once you set it.
  428. //
  429. // If the Task has been assigned to a delivery vehicle, then don't set the
  430. // Task state to CLOSED using `Task.update`. Instead, remove the `VehicleStop`
  431. // that contains the Task from the delivery vehicle, which automatically sets
  432. // the Task state to CLOSED.
  433. Task task = 3 [(google.api.field_behavior) = REQUIRED];
  434. // Required. The field mask that indicates which Task fields to update.
  435. // Note: The `update_mask` must contain at least one field.
  436. //
  437. // This is a comma-separated list of fully qualified names of fields. Example:
  438. // `"task_outcome,task_outcome_time,task_outcome_location"`.
  439. google.protobuf.FieldMask update_mask = 4 [(google.api.field_behavior) = REQUIRED];
  440. }
  441. // The `ListTasks` request message.
  442. message ListTasksRequest {
  443. // Optional. The standard Delivery API request header.
  444. DeliveryRequestHeader header = 1 [(google.api.field_behavior) = OPTIONAL];
  445. // Required. Must be in the format `providers/{provider}`.
  446. // The `provider` must be the Google Cloud Project ID. For example,
  447. // `sample-cloud-project`.
  448. string parent = 3 [
  449. (google.api.field_behavior) = REQUIRED,
  450. (google.api.resource_reference) = {
  451. child_type: "fleetengine.googleapis.com/Task"
  452. }
  453. ];
  454. // Optional. The maximum number of Tasks to return. The service may return fewer than
  455. // this value. If you don't specify this value, then the server determines the
  456. // number of results to return.
  457. int32 page_size = 4 [(google.api.field_behavior) = OPTIONAL];
  458. // Optional. A page token received from a previous `ListTasks` call.
  459. // You can provide this to retrieve the subsequent page.
  460. //
  461. // When paginating, all other parameters provided to `ListTasks` must match
  462. // the call that provided the page token.
  463. string page_token = 5 [(google.api.field_behavior) = OPTIONAL];
  464. // Optional. A filter query to apply when listing Tasks. See http://aip.dev/160 for
  465. // examples of filter syntax. If you don't specify a value, or if you filter
  466. // on an empty string, then all Tasks are returned. For information about the
  467. // Task properties that you can filter on, see
  468. // [Task
  469. // list](/maps/documentation/transportation-logistics/last-mile-fleet-solution/fleet-performance/fleet-engine/deliveries_api#list_tasks).
  470. string filter = 6 [(google.api.field_behavior) = OPTIONAL];
  471. }
  472. // The `ListTasks` response that contains the set of Tasks that meet the filter
  473. // criteria in the `ListTasksRequest`.
  474. message ListTasksResponse {
  475. // The set of Tasks that meet the requested filtering criteria. When no filter
  476. // is specified, the request returns all tasks. A successful response can also
  477. // be empty. An empty response indicates that no Tasks were found meeting the
  478. // requested filter criteria.
  479. repeated Task tasks = 1;
  480. // Pass this token in the `ListTasksRequest` to continue to list results.
  481. // If all results have been returned, then this field is either an empty
  482. // string, or it doesn't appear in the response.
  483. string next_page_token = 2;
  484. // The total number of Tasks that match the request criteria, across all
  485. // pages.
  486. int64 total_size = 3;
  487. }