MergeHRISClient.Model.Group (MergeHRISClient v1.0.3) View Source

The Group Object ### Description The Group object is used to represent Group information that employees belong to. This is often referenced with an Employee object. Please note: The teams object will fulfill most use cases. The Groups object is for power-users that want all types of groups at a company and the optionality of pulling multiple groups for an employee. ### Usage Example Fetch from the LIST Employee endpoint and expand groups to view an employee's groups.

Link to this section Summary

Link to this section Types

Specs

t() :: %MergeHRISClient.Model.Group{
  id: String.t() | nil,
  name: String.t() | nil,
  parent_group: String.t() | nil,
  remote_data: [MergeHRISClient.Model.RemoteData.t()] | nil,
  remote_id: String.t() | nil,
  remote_was_deleted: boolean() | nil,
  type: GroupTypeEnum | nil
}