github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelTarget.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // TargetPolicyEndpoints undocumented
     6  type TargetPolicyEndpoints struct {
     7  	// Object is the base model of TargetPolicyEndpoints
     8  	Object
     9  	// PlatformTypes undocumented
    10  	PlatformTypes []string `json:"platformTypes,omitempty"`
    11  }
    12  
    13  // TargetResource undocumented
    14  type TargetResource struct {
    15  	// Object is the base model of TargetResource
    16  	Object
    17  	// ID undocumented
    18  	ID *string `json:"id,omitempty"`
    19  	// DisplayName undocumented
    20  	DisplayName *string `json:"displayName,omitempty"`
    21  	// Type undocumented
    22  	Type *string `json:"type,omitempty"`
    23  	// UserPrincipalName undocumented
    24  	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
    25  	// GroupType undocumented
    26  	GroupType *GroupType `json:"groupType,omitempty"`
    27  	// ModifiedProperties undocumented
    28  	ModifiedProperties []ModifiedProperty `json:"modifiedProperties,omitempty"`
    29  }