github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelProcess.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Process undocumented
     8  type Process struct {
     9  	// Object is the base model of Process
    10  	Object
    11  	// AccountName undocumented
    12  	AccountName *string `json:"accountName,omitempty"`
    13  	// CommandLine undocumented
    14  	CommandLine *string `json:"commandLine,omitempty"`
    15  	// CreatedDateTime undocumented
    16  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    17  	// FileHash undocumented
    18  	FileHash *FileHash `json:"fileHash,omitempty"`
    19  	// IntegrityLevel undocumented
    20  	IntegrityLevel *ProcessIntegrityLevel `json:"integrityLevel,omitempty"`
    21  	// IsElevated undocumented
    22  	IsElevated *bool `json:"isElevated,omitempty"`
    23  	// Name undocumented
    24  	Name *string `json:"name,omitempty"`
    25  	// ParentProcessCreatedDateTime undocumented
    26  	ParentProcessCreatedDateTime *time.Time `json:"parentProcessCreatedDateTime,omitempty"`
    27  	// ParentProcessID undocumented
    28  	ParentProcessID *int `json:"parentProcessId,omitempty"`
    29  	// ParentProcessName undocumented
    30  	ParentProcessName *string `json:"parentProcessName,omitempty"`
    31  	// Path undocumented
    32  	Path *string `json:"path,omitempty"`
    33  	// ProcessID undocumented
    34  	ProcessID *int `json:"processId,omitempty"`
    35  }