Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Jan 4, 2024
1 parent 803a604 commit c5a7aa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/main/java/com/easypost/model/Children.java
Original file line number Diff line number Diff line change
@@ -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<ApiKey> apiKeys;
}
4 changes: 2 additions & 2 deletions src/main/java/com/easypost/service/UserService.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public Brand updateBrand(final String id, final Map<String, Object> 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.
Expand All @@ -157,7 +157,7 @@ public ChildrenCollection allChildren(final Map<String, Object> 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.
Expand Down

0 comments on commit c5a7aa1

Please sign in to comment.