summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelOMA.go
blob: fa9425012ee92c531e5ad067e0b1cd719e54cfd3 (plain) (blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import "time"

// OMASetting undocumented
type OMASetting struct {
	// Object is the base model of OMASetting
	Object
	// DisplayName Display Name.
	DisplayName *string `json:"displayName,omitempty"`
	// Description Description.
	Description *string `json:"description,omitempty"`
	// OMAURI OMA.
	OMAURI *string `json:"omaUri,omitempty"`
}

// OMASettingBase64 undocumented
type OMASettingBase64 struct {
	// OMASetting is the base model of OMASettingBase64
	OMASetting
	// FileName File name associated with the Value property (*.cer | *.crt | *.p7b | *.bin).
	FileName *string `json:"fileName,omitempty"`
	// Value Value. (Base64 encoded string)
	Value *string `json:"value,omitempty"`
}

// OMASettingBoolean undocumented
type OMASettingBoolean struct {
	// OMASetting is the base model of OMASettingBoolean
	OMASetting
	// Value Value.
	Value *bool `json:"value,omitempty"`
}

// OMASettingDateTime undocumented
type OMASettingDateTime struct {
	// OMASetting is the base model of OMASettingDateTime
	OMASetting
	// Value Value.
	Value *time.Time `json:"value,omitempty"`
}

// OMASettingFloatingPoint undocumented
type OMASettingFloatingPoint struct {
	// OMASetting is the base model of OMASettingFloatingPoint
	OMASetting
	// Value Value.
	Value *float64 `json:"value,omitempty"`
}

// OMASettingInteger undocumented
type OMASettingInteger struct {
	// OMASetting is the base model of OMASettingInteger
	OMASetting
	// Value Value.
	Value *int `json:"value,omitempty"`
	// IsReadOnly By setting to true, the CSP (configuration service provider) specified in the OMA-URI will perform a get, instead of set
	IsReadOnly *bool `json:"isReadOnly,omitempty"`
}

// OMASettingString undocumented
type OMASettingString struct {
	// OMASetting is the base model of OMASettingString
	OMASetting
	// Value Value.
	Value *string `json:"value,omitempty"`
}

// OMASettingStringXML undocumented
type OMASettingStringXML struct {
	// OMASetting is the base model of OMASettingStringXML
	OMASetting
	// FileName File name associated with the Value property (*.xml).
	FileName *string `json:"fileName,omitempty"`
	// Value Value. (UTF8 encoded byte array)
	Value *Binary `json:"value,omitempty"`
}