I'm using Codeception to create api tests for some REST API's. I'm finding that the Page Objects are really helpful in writing my tests but should I be using another Codeception object?
For example, I'm putting User information (first name, last name, user ID ...) into a UsersPage Page Object class but it is bothering me that it is named Users Page when it is not representing a page. Is there another Codeception Object I should be using to represent reusable information I'm using in the tests?