blob: 2455343b78d52da58ef8ab2730e84822b374b9df (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// SynchronizationTemplate undocumented
type SynchronizationTemplate struct {
// Entity is the base model of SynchronizationTemplate
Entity
// ApplicationID undocumented
ApplicationID *UUID `json:"applicationId,omitempty"`
// Default undocumented
Default *bool `json:"default,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// Discoverable undocumented
Discoverable *bool `json:"discoverable,omitempty"`
// FactoryTag undocumented
FactoryTag *string `json:"factoryTag,omitempty"`
// Metadata undocumented
Metadata []MetadataEntry `json:"metadata,omitempty"`
// Schema undocumented
Schema *SynchronizationSchema `json:"schema,omitempty"`
}
|