From c5a7aa16472843931cf742f35f8bc7aba74dfb2f Mon Sep 17 00:00:00 2001 From: jchen293 Date: Thu, 4 Jan 2024 15:18:17 -0500 Subject: [PATCH] address feedback --- src/main/java/com/easypost/model/Children.java | 3 ++- src/main/java/com/easypost/service/UserService.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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.