Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dginty4 committed Jul 25, 2024
1 parent b693496 commit 71059cc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions docs/resources/task_management_worktype.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ resource "genesyscloud_task_management_worktype" "worktype_1" {
default_skills_ids = [genesyscloud_routing_skill.skill_1.id, genesyscloud_routing_skill.skill_2.id]
assignment_enabled = true
defaultStatusName = "Open Status"
}
```

Expand All @@ -63,7 +61,6 @@ resource "genesyscloud_task_management_worktype" "worktype_1" {
- `default_priority` (Number) The default priority for Workitems created from the Worktype. The valid range is between -25,000,000 and 25,000,000.
- `default_queue_id` (String) The default queue for Workitems created from the Worktype.
- `default_skills_ids` (List of String) The default skills for Workitems created from the Worktype.
- `default_status_name` (String) The name of the default status for Workitems created from the Worktype. This status should be defined in 'statuses'.
- `default_ttl_seconds` (Number) The default time to time to live in seconds for Workitems created from the Worktype.
- `description` (String) The description of the Worktype.
- `division_id` (String) The division to which this entity belongs.
Expand Down
1 change: 1 addition & 0 deletions docs/resources/task_management_worktype_status.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ resource "genesyscloud_task_management_worktype_status" "worktype_status" {

### Optional

- `default` (Boolean) This status is the default status for Workitems created from this Worktype. Only one status can be set as the default status at a time.
- `default_destination_status_id` (String) Default destination status to which this Status will transition to if auto status transition enabled.
- `description` (String) The description of the Status.
- `destination_status_ids` (List of String) A list of destination Statuses where a Workitem with this Status can transition to. If the list is empty Workitems with this Status can transition to all other Statuses defined on the Worktype. A Status can have a maximum of 24 destinations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ resource "genesyscloud_task_management_worktype" "worktype_1" {
default_skills_ids = [genesyscloud_routing_skill.skill_1.id, genesyscloud_routing_skill.skill_2.id]

assignment_enabled = true

defaultStatusName = "Open Status"
}

0 comments on commit 71059cc

Please sign in to comment.