MergeHRISClient.Model.Location (MergeHRISClient v1.0.0) View Source

The Location Object ### Description The Location object is used to represent a Location for a Company or Employee address. This is shared across many models and is referenced whenever a location is stored. ### Usage Example Fetch from the LIST Locations endpoint and filter by ID to show all office locations.

Link to this section Summary

Link to this section Types

Specs

t() :: %MergeHRISClient.Model.Location{
  city: String.t() | nil,
  country: CountryEnum | nil,
  id: String.t() | nil,
  phone_number: String.t() | nil,
  remote_data: [MergeHRISClient.Model.RemoteData.t()] | nil,
  remote_id: String.t() | nil,
  state: String.t() | nil,
  street_1: String.t() | nil,
  street_2: String.t() | nil,
  zip_code: String.t() | nil
}