blob: 08f0c05c812e97ea9c5cd8932e62e9b0f8bf0b9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AttributeMappingParameterSchema undocumented
type AttributeMappingParameterSchema struct {
// Object is the base model of AttributeMappingParameterSchema
Object
// AllowMultipleOccurrences undocumented
AllowMultipleOccurrences *bool `json:"allowMultipleOccurrences,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// Required undocumented
Required *bool `json:"required,omitempty"`
// Type undocumented
Type *AttributeType `json:"type,omitempty"`
}
|