update(details) {
    return new Promise((resolve, reject) => {
      apiClient.patch(`/projects/${this.project.identifier}/members/${this.identifier}`, details).then((response) => {
        this.data = response.body;
        resolve(this);