-
Notifications
You must be signed in to change notification settings - Fork 13
/
userroutinglanguagepost.go
33 lines (23 loc) · 1.11 KB
/
userroutinglanguagepost.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package platformclientv2
import (
"encoding/json"
"strconv"
"strings"
)
// Userroutinglanguagepost - Represents an organization language assigned to a user. When assigning to a user specify the organization langauge id as the id.
type Userroutinglanguagepost struct {
// Id - The id of the existing routing language to add to the user
Id *string `json:"id,omitempty"`
// Proficiency - Proficiency is a rating from 0.0 to 5.0 on how competent an agent is for a particular language. It is used when a queue is set to \"Best available language\" mode to allow acd interactions to target agents with higher proficiency ratings.
Proficiency *float64 `json:"proficiency,omitempty"`
// LanguageUri - URI to the organization language used by this user language.
LanguageUri *string `json:"languageUri,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
// String returns a JSON representation of the model
func (o *Userroutinglanguagepost) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}