Skip to content

Commit

Permalink
doc generate
Browse files Browse the repository at this point in the history
  • Loading branch information
HemanthDogiparthi12 committed Jan 3, 2025
1 parent f8232b2 commit ca652a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/resources/routing_email_route.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ resource "genesyscloud_routing_email_route" "support-route" {

### Optional

- `allow_multiple_actions` (Boolean) Control if multiple actions are allowed on this route. When true the disconnect has to be done manually. When false a conversation will be disconnected by the system after every action.
- `auto_bcc` (Block Set) The recipients that should be automatically blind copied on outbound emails associated with this route. This should not be set if reply_email_address is specified. (see [below for nested schema](#nestedblock--auto_bcc))
- `flow_id` (String) The flow to use for processing the email. This should not be set if a queue_id is specified.
- `from_email` (String) The sender email to use for outgoing replies. This should not be set if reply_email_address is specified.
- `history_inclusion` (String) The configuration to indicate how the history of a conversation has to be included in a draft. Defaults to `Optional`.
- `language_id` (String) The language to use for routing.
- `priority` (Number) The priority to use for routing.
- `queue_id` (String) The queue to route the emails to. This should not be set if a flow_id is specified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ func getRoutingEmailRouteFromResourceData(d *schema.ResourceData) platformclient
}

if d.Get("history_inclusion") != "" {
fmt.Println("reached")
fmt.Printf("%v ", platformclientv2.String(d.Get("history_inclusion").(string)))
inboundRoute.HistoryInclusion = platformclientv2.String(d.Get("history_inclusion").(string))
}
if d.Get("allow_multiple_actions") != "" {
Expand Down

0 comments on commit ca652a2

Please sign in to comment.