Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 959 Bytes

create-break-type-response.md

File metadata and controls

35 lines (26 loc) · 959 Bytes

Create Break Type Response

The response to the request to create a BreakType. The response contains the created BreakType object and might contain a set of Error objects if the request resulted in errors.

Structure

CreateBreakTypeResponse

Fields

Name Type Tags Description
breakType BreakType | undefined Optional A defined break template that sets an expectation for possible Break
instances on a Shift.
errors Error[] | undefined Optional Any errors that occurred during the request.

Example (as JSON)

{
  "break_type": {
    "break_name": "Lunch Break",
    "created_at": "2019-02-26T22:42:54Z",
    "expected_duration": "PT30M",
    "id": "49SSVDJG76WF3",
    "is_paid": true,
    "location_id": "CGJN03P1D08GF",
    "updated_at": "2019-02-26T22:42:54Z",
    "version": 1
  }
}