Skip to content

Commit c4ea534

Browse files
committed
Makes ProjectInfo.Quota serializable. Fixed #599.
1 parent 558fb1f commit c4ea534

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)