File tree 7 files changed +11
-11
lines changed
algoliasearch/src/main/java/com/algolia/model/ingestion
7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public Authentication setUpdatedAt(String updatedAt) {
119
119
}
120
120
121
121
/** Date of last update in RFC 3339 format. */
122
- @ javax .annotation .Nullable
122
+ @ javax .annotation .Nonnull
123
123
public String getUpdatedAt () {
124
124
return updatedAt ;
125
125
}
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public Destination setUpdatedAt(String updatedAt) {
111
111
}
112
112
113
113
/** Date of last update in RFC 3339 format. */
114
- @ javax .annotation .Nullable
114
+ @ javax .annotation .Nonnull
115
115
public String getUpdatedAt () {
116
116
return updatedAt ;
117
117
}
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ public Source setUpdatedAt(String updatedAt) {
117
117
}
118
118
119
119
/** Date of last update in RFC 3339 format. */
120
- @ javax .annotation .Nullable
120
+ @ javax .annotation .Nonnull
121
121
public String getUpdatedAt () {
122
122
return updatedAt ;
123
123
}
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ public Task setUpdatedAt(String updatedAt) {
246
246
}
247
247
248
248
/** Date of last update in RFC 3339 format. */
249
- @ javax .annotation .Nullable
249
+ @ javax .annotation .Nonnull
250
250
public String getUpdatedAt () {
251
251
return updatedAt ;
252
252
}
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ public TaskV1 setUpdatedAt(String updatedAt) {
195
195
}
196
196
197
197
/** Date of last update in RFC 3339 format. */
198
- @ javax .annotation .Nullable
198
+ @ javax .annotation .Nonnull
199
199
public String getUpdatedAt () {
200
200
return updatedAt ;
201
201
}
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ public Transformation setUpdatedAt(String updatedAt) {
127
127
}
128
128
129
129
/** Date of last update in RFC 3339 format. */
130
- @ javax .annotation .Nullable
130
+ @ javax .annotation .Nonnull
131
131
public String getUpdatedAt () {
132
132
return updatedAt ;
133
133
}
Original file line number Diff line number Diff line change 13
13
public class TransformationTryResponse {
14
14
15
15
@ JsonProperty ("payloads" )
16
- private List <Object > payloads = new ArrayList <>();
16
+ private List <String > payloads = new ArrayList <>();
17
17
18
18
@ JsonProperty ("error" )
19
19
private TransformationError error ;
20
20
21
- public TransformationTryResponse setPayloads (List <Object > payloads ) {
21
+ public TransformationTryResponse setPayloads (List <String > payloads ) {
22
22
this .payloads = payloads ;
23
23
return this ;
24
24
}
25
25
26
- public TransformationTryResponse addPayloads (Object payloadsItem ) {
26
+ public TransformationTryResponse addPayloads (String payloadsItem ) {
27
27
this .payloads .add (payloadsItem );
28
28
return this ;
29
29
}
30
30
31
- /** The array of records returned by the transformation service. */
31
+ /** The array of stringified records returned by the transformation service. */
32
32
@ javax .annotation .Nonnull
33
- public List <Object > getPayloads () {
33
+ public List <String > getPayloads () {
34
34
return payloads ;
35
35
}
36
36
You can’t perform that action at this time.
0 commit comments