mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 08:40:29 +00:00
30 lines
859 B
Go
30 lines
859 B
Go
// Code generated by msgraph.go/gen DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// OptionalClaim undocumented
|
|
type OptionalClaim struct {
|
|
// Object is the base model of OptionalClaim
|
|
Object
|
|
// Name undocumented
|
|
Name *string `json:"name,omitempty"`
|
|
// Source undocumented
|
|
Source *string `json:"source,omitempty"`
|
|
// Essential undocumented
|
|
Essential *bool `json:"essential,omitempty"`
|
|
// AdditionalProperties undocumented
|
|
AdditionalProperties []string `json:"additionalProperties,omitempty"`
|
|
}
|
|
|
|
// OptionalClaims undocumented
|
|
type OptionalClaims struct {
|
|
// Object is the base model of OptionalClaims
|
|
Object
|
|
// IDToken undocumented
|
|
IDToken []OptionalClaim `json:"idToken,omitempty"`
|
|
// AccessToken undocumented
|
|
AccessToken []OptionalClaim `json:"accessToken,omitempty"`
|
|
// Saml2Token undocumented
|
|
Saml2Token []OptionalClaim `json:"saml2Token,omitempty"`
|
|
}
|