diff --git a/src/main/java/com/easypost/model/Children.java b/src/main/java/com/easypost/model/Children.java index a08db0533..31aaf7dca 100644 --- a/src/main/java/com/easypost/model/Children.java +++ b/src/main/java/com/easypost/model/Children.java @@ -1,12 +1,13 @@ package com.easypost.model; import java.util.List; +import lombok.Getter; +@Getter public class Children extends EasyPostResource { private String parentId; private String name; private String phoneNumber; private Boolean verified; - private Boolean defaultCarbonOffset; private List apiKeys; } diff --git a/src/main/java/com/easypost/service/UserService.java b/src/main/java/com/easypost/service/UserService.java index 3a68a0678..77039bd11 100644 --- a/src/main/java/com/easypost/service/UserService.java +++ b/src/main/java/com/easypost/service/UserService.java @@ -144,7 +144,7 @@ public Brand updateBrand(final String id, final Map params) thro } /** - * Retrieve the paginated list of children of a user. + * Retrieve the paginated list of children for the authenticated user. * * @param params Map of parameters. * @return ChildCollection object. @@ -157,7 +157,7 @@ public ChildrenCollection allChildren(final Map params) throws E } /** - * Get the next page of an ChildrenCollection. + * Get the next page of a ChildrenCollection. * * @param collection ChildrenCollection to get next page of. * @param pageSize The number of results to return on the next page.