ListProjectMembers missing created_by
The ProjectMember struct doesn't contain the created_by field as mentioned in the API Spec: https://docs.gitlab.com/api/members/#get-a-member-of-a-group-or-project.
Implementation guide
- Create new struct in
project_members.go
for thecreated_by
object from the API response. - Add new field
CreatedBy
toProjectMember
struct with type of the struct from the first step. - Update unit tests to include new field/object.
Edited by 🤖 GitLab Bot 🤖