> + private String endDate;
> + @SerializedName("Limit")
> + private Integer limit;
> + @SerializedName("Marker")
> + private String marker;
> +
> + @ConstructorProperties({ "StartDate", "EndDate", "Limit", "Marker" })
> + private InventoryRetrievalParameters(@Nullable String startDate,
> @Nullable String endDate,
> + @Nullable Integer limit, @Nullable String marker) {
> + this.startDate = startDate;
> + this.endDate = endDate;
> + this.limit = limit;
> + this.marker = marker;
> + }
> +
> + public InventoryRetrievalParameters() {
Is this needed? If so, quick comment why?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/25/files#r14219825