> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.googlecomputeengine.domain;
> +
> +import org.jclouds.json.SerializedNames;
> +
> +import com.google.auto.value.AutoValue;
> +
> +@AutoValue
> +public abstract class KeyValuePair {
> +
> + abstract String key();
> +
> + abstract String value();
Are these properties *package-private* for any particular reason? In that case,
would it make sense to make the whole class package-private? (I'm not sure if
that will prevent it from being deserialised properly):
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/111/files#r21639540