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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // APIApplication undocumented
     6  type APIApplication struct {
     7  	// Object is the base model of APIApplication
     8  	Object
     9  	// AcceptMappedClaims undocumented
    10  	AcceptMappedClaims *bool `json:"acceptMappedClaims,omitempty"`
    11  	// KnownClientApplications undocumented
    12  	KnownClientApplications []UUID `json:"knownClientApplications,omitempty"`
    13  	// PreAuthorizedApplications undocumented
    14  	PreAuthorizedApplications []PreAuthorizedApplication `json:"preAuthorizedApplications,omitempty"`
    15  	// RequestedAccessTokenVersion undocumented
    16  	RequestedAccessTokenVersion *int `json:"requestedAccessTokenVersion,omitempty"`
    17  	// OAuth2PermissionScopes undocumented
    18  	OAuth2PermissionScopes []PermissionScope `json:"oauth2PermissionScopes,omitempty"`
    19  }