Skip to content

Commit

Permalink
InformationalUrl model: update fields to StringNullWhenEmpty
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Oct 18, 2023
1 parent 7c16197 commit 74d9058
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions msgraph/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -1140,11 +1140,11 @@ type ImplicitGrantSettings struct {
}

type InformationalUrl struct {
LogoUrl *string `json:"logoUrl,omitempty"`
MarketingUrl *string `json:"marketingUrl"`
PrivacyStatementUrl *string `json:"privacyStatementUrl"`
SupportUrl *string `json:"supportUrl"`
TermsOfServiceUrl *string `json:"termsOfServiceUrl"`
LogoUrl *StringNullWhenEmpty `json:"logoUrl,omitempty"`
MarketingUrl *StringNullWhenEmpty `json:"marketingUrl"`
PrivacyStatementUrl *StringNullWhenEmpty `json:"privacyStatementUrl"`
SupportUrl *StringNullWhenEmpty `json:"supportUrl"`
TermsOfServiceUrl *StringNullWhenEmpty `json:"termsOfServiceUrl"`
}

// Invitation describes a Invitation object.
Expand Down

0 comments on commit 74d9058

Please sign in to comment.