Bump loofah from 2.2.3 to 2.3.1 in /apps/workbench
[arvados.git] / sdk / go / arvados / specimen.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 package arvados
6
7 import "time"
8
9 type Specimen struct {
10         UUID       string                 `json:"uuid"`
11         OwnerUUID  string                 `json:"owner_uuid"`
12         CreatedAt  time.Time              `json:"created_at"`
13         ModifiedAt time.Time              `json:"modified_at"`
14         UpdatedAt  time.Time              `json:"updated_at"`
15         Properties map[string]interface{} `json:"properties"`
16 }
17
18 type SpecimenList struct {
19         Items          []Specimen `json:"items"`
20         ItemsAvailable int        `json:"items_available"`
21         Offset         int        `json:"offset"`
22         Limit          int        `json:"limit"`
23 }