> +import org.jclouds.javax.annotation.Nullable;
> +
> +import com.google.common.base.Objects;
> +import com.google.gson.annotations.SerializedName;
> +
> +public class InventoryRetrievalJobRequest extends JobRequest {
> + private static final String TYPE = "inventory-retrieval";
> +
> + @SerializedName("Description")
> + private final String description;
> + @SerializedName("Format")
> + private final String format;
> + @SerializedName("InventoryRetrievalParameters")
> + private final InventoryRetrievalParameters parameters;
> +
> + @ConstructorProperties({ "Description", "Format",
> "InventoryRetrievalParameters" })
Three properties mentioned here but only two in the actual constructor?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/25/files#r14219796