> +      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() {

>  I thought I had to support both serialization and deserialization.

Wait...you may be quite correct - I could well be the one getting things wrong 
here ;-)

@nacx: thoughts..?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/25/files#r14220285

Reply via email to