Search for Paycodes
You can find a single Paycode
by using its UID.
Paycode paycode = gateway.paycode().find("paycode-uid");
Paycode
object is returned on success.
Find all Paycodes
SearchRequest search = new SearchRequest().limit(20);
PaycodeCollection collection = gateway.paycode().search(search);
All the usual pagination parameters apply.