summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppOperationModel.go
blob: a57401a372feca42bf1e300bacde733cf62d345a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

import "time"

// ManagedAppOperation Represents an operation applied against an app registration.
type ManagedAppOperation struct {
	// Entity is the base model of ManagedAppOperation
	Entity
	// DisplayName The operation name.
	DisplayName *string `json:"displayName,omitempty"`
	// LastModifiedDateTime The last time the app operation was modified.
	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
	// State The current state of the operation
	State *string `json:"state,omitempty"`
	// Version Version of the entity.
	Version *string `json:"version,omitempty"`
}