> +    public abstract String id();
> +
> +    public abstract String name();
> +
> +    public abstract Hardware hardware();
> +
> +    @SerializedNames({"id", "name", "hardware"})
> +    public static HardwareFlavour create(String id, String name, Hardware 
> hardware) {
> +        return new AutoValue_HardwareFlavour(id, name, hardware);
> +    }
> +
> +    @AutoValue
> +    public abstract static class Hardware {
> +
> +        @Nullable
> +        public abstract String fixedInstanceSizeId();

If this is nullable, could we add it to the existing `Hardware` class and reuse 
it instead of having this inner one?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68666467

Reply via email to