blob: 62becc1d5df6364579b079d6ff799a3201061fb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MobileAppDependency Describes a dependency type between two mobile apps.
type MobileAppDependency struct {
// MobileAppRelationship is the base model of MobileAppDependency
MobileAppRelationship
// DependencyType The type of dependency relationship between the parent and child apps.
DependencyType *MobileAppDependencyType `json:"dependencyType,omitempty"`
// DependentAppCount The total number of dependencies the child app has.
DependentAppCount *int `json:"dependentAppCount,omitempty"`
}
|