Skip to content

Commit

Permalink
Makes ProjectInfo.Quota serializable. Fixed #599.
Browse files Browse the repository at this point in the history
  • Loading branch information
mderka committed Jan 30, 2016
1 parent a8bee9c commit 762483b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ public class ProjectInfo implements Serializable {
* @see <a href="https://cloud.google.com/dns/api/v1/projects#quota">Google Cloud DNS
* documentation</a>
*/
public static class Quota {
public static class Quota implements Serializable {

private static final long serialVersionUID = 6854685970605363639L;
private final int zones;
private final int resourceRecordsPerRrset;
private final int rrsetAdditionsPerChange;
Expand Down

0 comments on commit 762483b

Please sign in to comment.