Class SensorQueryParams.Body.Builder
-
- All Implemented Interfaces:
public final class SensorQueryParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
filter
final SensorQueryParams.Body.Builder filter(SensorQueryParams.Filter filter)
-
filter
final SensorQueryParams.Body.Builder filter(JsonField<SensorQueryParams.Filter> filter)
Sets Builder.filter to an arbitrary JSON value.
You should usually call Builder.filter with a well-typed Filter value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
orderBy
final SensorQueryParams.Body.Builder orderBy(String orderBy)
-
orderBy
final SensorQueryParams.Body.Builder orderBy(JsonField<String> orderBy)
Sets Builder.orderBy to an arbitrary JSON value.
You should usually call Builder.orderBy with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
orderDir
final SensorQueryParams.Body.Builder orderDir(SensorQueryParams.OrderDir orderDir)
-
orderDir
final SensorQueryParams.Body.Builder orderDir(JsonField<SensorQueryParams.OrderDir> orderDir)
Sets Builder.orderDir to an arbitrary JSON value.
You should usually call Builder.orderDir with a well-typed OrderDir value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pageNumber
final SensorQueryParams.Body.Builder pageNumber(Long pageNumber)
-
pageNumber
final SensorQueryParams.Body.Builder pageNumber(JsonField<Long> pageNumber)
Sets Builder.pageNumber to an arbitrary JSON value.
You should usually call Builder.pageNumber with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pageSize
final SensorQueryParams.Body.Builder pageSize(Long pageSize)
-
pageSize
final SensorQueryParams.Body.Builder pageSize(JsonField<Long> pageSize)
Sets Builder.pageSize to an arbitrary JSON value.
You should usually call Builder.pageSize with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final SensorQueryParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final SensorQueryParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final SensorQueryParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final SensorQueryParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final SensorQueryParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final SensorQueryParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-