Skip to content

Commit

Permalink
ConditionalAccessSessionControls: remove omitempty on all child blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed May 16, 2024
1 parent 8366b3a commit 94c85a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions msgraph/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -703,11 +703,11 @@ type ConditionalAccessPolicy struct {
}

type ConditionalAccessSessionControls struct {
ApplicationEnforcedRestrictions *ApplicationEnforcedRestrictionsSessionControl `json:"applicationEnforcedRestrictions,omitempty"`
CloudAppSecurity *CloudAppSecurityControl `json:"cloudAppSecurity,omitempty"`
ApplicationEnforcedRestrictions *ApplicationEnforcedRestrictionsSessionControl `json:"applicationEnforcedRestrictions"`
CloudAppSecurity *CloudAppSecurityControl `json:"cloudAppSecurity"`
DisableResilienceDefaults *bool `json:"disableResilienceDefaults,omitempty"`
PersistentBrowser *PersistentBrowserSessionControl `json:"persistentBrowser,omitempty"`
SignInFrequency *SignInFrequencySessionControl `json:"signInFrequency,omitempty"`
PersistentBrowser *PersistentBrowserSessionControl `json:"persistentBrowser"`
SignInFrequency *SignInFrequencySessionControl `json:"signInFrequency"`
}

type ConditionalAccessUsers struct {
Expand Down

0 comments on commit 94c85a5

Please sign in to comment.