-
Notifications
You must be signed in to change notification settings - Fork 13
/
createmanagementunitapirequest.go
41 lines (27 loc) · 1.29 KB
/
createmanagementunitapirequest.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
34
35
36
37
38
39
40
41
package platformclientv2
import (
"encoding/json"
"strconv"
"strings"
)
// Createmanagementunitapirequest - Create Management Unit
type Createmanagementunitapirequest struct {
// Name - The name of the management unit
Name *string `json:"name,omitempty"`
// TimeZone - The default time zone to use for this management unit. Moving to Business Unit
TimeZone *string `json:"timeZone,omitempty"`
// StartDayOfWeek - The configured first day of the week for scheduling and forecasting purposes. Moving to Business Unit
StartDayOfWeek *string `json:"startDayOfWeek,omitempty"`
// Settings - The configuration for the management unit. If omitted, reasonable defaults will be assigned
Settings *Createmanagementunitsettingsrequest `json:"settings,omitempty"`
// DivisionId - The id of the division to which this management unit belongs. Defaults to home division ID
DivisionId *string `json:"divisionId,omitempty"`
// BusinessUnitId - The id of the business unit to which this management unit belongs
BusinessUnitId *string `json:"businessUnitId,omitempty"`
}
// String returns a JSON representation of the model
func (o *Createmanagementunitapirequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}