Tweak test script no issue #
[arvados.git] / src / main / java / org / arvados / client / api / model / ItemList.java
1 /*
2  * Copyright (C) The Arvados Authors. All rights reserved.
3  *
4  * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
5  *
6  */
7
8 package org.arvados.client.api.model;
9
10 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
11 import com.fasterxml.jackson.annotation.JsonInclude;
12 import com.fasterxml.jackson.annotation.JsonProperty;
13 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
14
15 @JsonInclude(JsonInclude.Include.NON_NULL)
16 @JsonIgnoreProperties(ignoreUnknown = true)
17 @JsonPropertyOrder({ "kind", "etag", "self_link", "offset", "limit", "items_available" })
18 public class ItemList {
19
20     @JsonProperty("kind")
21     private String kind;
22     @JsonProperty("etag")
23     private String etag;
24     @JsonProperty("self_link")
25     private String selfLink;
26     @JsonProperty("offset")
27     private Object offset;
28     @JsonProperty("limit")
29     private Object limit;
30     @JsonProperty("items_available")
31     private Integer itemsAvailable;
32
33     public String getKind() {
34         return this.kind;
35     }
36
37     public String getEtag() {
38         return this.etag;
39     }
40
41     public String getSelfLink() {
42         return this.selfLink;
43     }
44
45     public Object getOffset() {
46         return this.offset;
47     }
48
49     public Object getLimit() {
50         return this.limit;
51     }
52
53     public Integer getItemsAvailable() {
54         return this.itemsAvailable;
55     }
56
57     public void setKind(String kind) {
58         this.kind = kind;
59     }
60
61     public void setEtag(String etag) {
62         this.etag = etag;
63     }
64
65     public void setSelfLink(String selfLink) {
66         this.selfLink = selfLink;
67     }
68
69     public void setOffset(Object offset) {
70         this.offset = offset;
71     }
72
73     public void setLimit(Object limit) {
74         this.limit = limit;
75     }
76
77     public void setItemsAvailable(Integer itemsAvailable) {
78         this.itemsAvailable = itemsAvailable;
79     }
80 }