Skip to content

Commit 762483b

Browse files
committed
Makes ProjectInfo.Quota serializable. Fixed #599.
1 parent a8bee9c commit 762483b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

gcloud-java-dns/src/main/java/com/google/gcloud/dns/ProjectInfo.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ public class ProjectInfo implements Serializable {
4444
* @see <a href="https://cloud.google.com/dns/api/v1/projects#quota">Google Cloud DNS
4545
* documentation</a>
4646
*/
47-
public static class Quota {
47+
public static class Quota implements Serializable {
4848

49+
private static final long serialVersionUID = 6854685970605363639L;
4950
private final int zones;
5051
private final int resourceRecordsPerRrset;
5152
private final int rrsetAdditionsPerChange;

0 commit comments

Comments
 (0)