# Athenian::Team ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **Integer** | Team identifier. | | | **name** | **String** | Name of the team. | | | **members** | [**Array<Contributor>**](Contributor.md) | List of contributors. | | | **parent** | **Integer** | Identifier of the higher level team. | | ## Example ```ruby require 'athenian' instance = Athenian::Team.new( id: null, name: null, members: [{"email":"bot@athenian.co","login":"github.com/gkwillie","name":"Groundskeeper Willie","picture":"https://avatars0.githubusercontent.com/u/60340680?v=4"},{"email":"loumarvincaraig@gmail.com","login":"github.com/se7entyse7en","name":"Lou Marvin Caraig","picture":"https://avatars1.githubusercontent.com/u/5599208?v=4"}], parent: null ) ```