-
Notifications
You must be signed in to change notification settings - Fork 1
/
GasPredictions.java
160 lines (135 loc) · 3.74 KB
/
GasPredictions.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* Amberdata Web3API for Gas Predictions
* This is an OpenAPI document for Amberdata Gas Predictions https://docs.amberdata.io/reference#get-gas-predictions
*
* The version of the OpenAPI document: 1.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.demo.models;
import com.example.demo.models.GasPrediction;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.json.bind.annotation.JsonbProperty;
public class GasPredictions {
private GasPrediction average;
private GasPrediction fast;
private GasPrediction fastest;
private GasPrediction safeLow;
/**
* Get average
* @return average
**/
@JsonbProperty("average")
public GasPrediction getAverage() {
return average;
}
/**
* Set average
**/
public void setAverage(GasPrediction average) {
this.average = average;
}
public GasPredictions average(GasPrediction average) {
this.average = average;
return this;
}
/**
* Get fast
* @return fast
**/
@JsonbProperty("fast")
public GasPrediction getFast() {
return fast;
}
/**
* Set fast
**/
public void setFast(GasPrediction fast) {
this.fast = fast;
}
public GasPredictions fast(GasPrediction fast) {
this.fast = fast;
return this;
}
/**
* Get fastest
* @return fastest
**/
@JsonbProperty("fastest")
public GasPrediction getFastest() {
return fastest;
}
/**
* Set fastest
**/
public void setFastest(GasPrediction fastest) {
this.fastest = fastest;
}
public GasPredictions fastest(GasPrediction fastest) {
this.fastest = fastest;
return this;
}
/**
* Get safeLow
* @return safeLow
**/
@JsonbProperty("safeLow")
public GasPrediction getSafeLow() {
return safeLow;
}
/**
* Set safeLow
**/
public void setSafeLow(GasPrediction safeLow) {
this.safeLow = safeLow;
}
public GasPredictions safeLow(GasPrediction safeLow) {
this.safeLow = safeLow;
return this;
}
/**
* Create a string representation of this pojo.
**/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GasPredictions {\n");
sb.append(" average: ").append(toIndentedString(average)).append("\n");
sb.append(" fast: ").append(toIndentedString(fast)).append("\n");
sb.append(" fastest: ").append(toIndentedString(fastest)).append("\n");
sb.append(" safeLow: ").append(toIndentedString(safeLow)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private static String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}