| Index: src/com/google/api/data/provisioning/v2/model/Property.java |
| =================================================================== |
| --- src/com/google/api/data/provisioning/v2/model/Property.java (revision 0) |
| +++ src/com/google/api/data/provisioning/v2/model/Property.java (revision 0) |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2011 Google Inc. All Rights Reserved. |
| + |
| +package com.google.api.data.provisioning.v2.model; |
| + |
| +import com.google.api.client.util.Key; |
| + |
| +/** |
| + * @author shraddhag@google.com (Shraddha Gupta) |
| + * |
| + */ |
| +public class Property { |
| + /** Property: name value pair */ |
| + |
| + @Key("@name") |
| + public String name; |
| + |
| + @Key("@value") |
| + public String value; |
| +} |