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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // HasPayloadLinkResultItem undocumented
     6  type HasPayloadLinkResultItem struct {
     7  	// Object is the base model of HasPayloadLinkResultItem
     8  	Object
     9  	// PayloadID Key of the Payload, In the format of Guid.
    10  	PayloadID *string `json:"payloadId,omitempty"`
    11  	// HasLink Indicate whether a payload has any link or not.
    12  	HasLink *bool `json:"hasLink,omitempty"`
    13  	// Error Exception information indicates if check for this item was successful or not.Empty string for no error.
    14  	Error *string `json:"error,omitempty"`
    15  	// Sources The reason where the link comes from.
    16  	Sources []DeviceAndAppManagementAssignmentSource `json:"sources,omitempty"`
    17  }