Skip to content

Commit 9b6c743

Browse files
committed
Updated Schema
1 parent 5be5373 commit 9b6c743

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

src/main/java/com/auth0/json/mgmt/userAttributeProfiles/ListUserAttributeProfile.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ public class ListUserAttributeProfile {
1212
@JsonProperty("user_attribute_profiles")
1313
private List<UserAttributeProfile> userAttributeProfiles;
1414

15+
@JsonProperty("next")
16+
private String next;
17+
1518
/**
1619
* Gets the user attribute profiles.
1720
* @return the user attribute profiles
@@ -29,4 +32,14 @@ public List<UserAttributeProfile> getUserAttributeProfiles() {
2932
public void setUserAttributeProfiles(List<UserAttributeProfile> userAttributeProfiles) {
3033
this.userAttributeProfiles = userAttributeProfiles;
3134
}
35+
36+
@JsonProperty("next")
37+
public String getNext() {
38+
return next;
39+
}
40+
41+
@JsonProperty("next")
42+
public void setNext(String next) {
43+
this.next = next;
44+
}
3245
}

src/test/resources/mgmt/user_attribute_profiles_list.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,7 @@
8989
}
9090
}
9191
}
92-
]
92+
],
93+
"next": "Fe26.2*API2_1758785444*34b68e78fd693520c028d0ea61ae32653a36ca05d3da972107bb12a581eea9bb*"
94+
9395
}

0 commit comments

Comments
 (0)