summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/AppRoleAssignmentModel.go
blob: 9343821a8bc09d9d97dfa2c1df102e5b2102519b (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

import "time"

// AppRoleAssignment undocumented
type AppRoleAssignment struct {
	// Entity is the base model of AppRoleAssignment
	Entity
	// AppRoleID undocumented
	AppRoleID *UUID `json:"appRoleId,omitempty"`
	// CreationTimestamp undocumented
	CreationTimestamp *time.Time `json:"creationTimestamp,omitempty"`
	// PrincipalDisplayName undocumented
	PrincipalDisplayName *string `json:"principalDisplayName,omitempty"`
	// PrincipalID undocumented
	PrincipalID *UUID `json:"principalId,omitempty"`
	// PrincipalType undocumented
	PrincipalType *string `json:"principalType,omitempty"`
	// ResourceDisplayName undocumented
	ResourceDisplayName *string `json:"resourceDisplayName,omitempty"`
	// ResourceID undocumented
	ResourceID *UUID `json:"resourceId,omitempty"`
}