diff options
| author | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
| commit | e9c24f4af7ed56760f6db7941827d09f6db9020b (patch) | |
| tree | 62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go | |
| parent | 58d5e7cfda4781d8a57ec52aefd02983835c301a (diff) | |
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go')
| -rw-r--r-- | teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go new file mode 100644 index 0000000..33a6e15 --- /dev/null +++ b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go @@ -0,0 +1,75 @@ +// Code generated by msgraph.go/gen DO NOT EDIT. + +package msgraph + +// Credential undocumented +type Credential struct { + // Object is the base model of Credential + Object + // FieldID undocumented + FieldID *string `json:"fieldId,omitempty"` + // Value undocumented + Value *string `json:"value,omitempty"` + // Type undocumented + Type *string `json:"type,omitempty"` +} + +// CredentialSingleSignOnExtension undocumented +type CredentialSingleSignOnExtension struct { + // SingleSignOnExtension is the base model of CredentialSingleSignOnExtension + SingleSignOnExtension + // ExtensionIdentifier Gets or sets the bundle ID of the app extension that performs SSO for the specified URLs. + ExtensionIdentifier *string `json:"extensionIdentifier,omitempty"` + // TeamIdentifier Gets or sets the team ID of the app extension that performs SSO for the specified URLs. + TeamIdentifier *string `json:"teamIdentifier,omitempty"` + // Domains Gets or sets a list of hosts or domain names for which the app extension performs SSO. + Domains []string `json:"domains,omitempty"` + // Realm Gets or sets the case-sensitive realm name for this profile. + Realm *string `json:"realm,omitempty"` + // Configurations Gets or sets a list of typed key-value pairs used to configure Credential-type profiles. This collection can contain a maximum of 500 elements. + Configurations []KeyTypedValuePair `json:"configurations,omitempty"` +} + +// CredentialUsageSummary undocumented +type CredentialUsageSummary struct { + // Entity is the base model of CredentialUsageSummary + Entity + // Feature undocumented + Feature *FeatureType `json:"feature,omitempty"` + // SuccessfulActivityCount undocumented + SuccessfulActivityCount *int `json:"successfulActivityCount,omitempty"` + // FailureActivityCount undocumented + FailureActivityCount *int `json:"failureActivityCount,omitempty"` + // AuthMethod undocumented + AuthMethod *UsageAuthMethod `json:"authMethod,omitempty"` +} + +// CredentialUserRegistrationCount undocumented +type CredentialUserRegistrationCount struct { + // Entity is the base model of CredentialUserRegistrationCount + Entity + // TotalUserCount undocumented + TotalUserCount *int `json:"totalUserCount,omitempty"` + // UserRegistrationCounts undocumented + UserRegistrationCounts []UserRegistrationCount `json:"userRegistrationCounts,omitempty"` +} + +// CredentialUserRegistrationDetails undocumented +type CredentialUserRegistrationDetails struct { + // Entity is the base model of CredentialUserRegistrationDetails + Entity + // UserPrincipalName undocumented + UserPrincipalName *string `json:"userPrincipalName,omitempty"` + // UserDisplayName undocumented + UserDisplayName *string `json:"userDisplayName,omitempty"` + // AuthMethods undocumented + AuthMethods []RegistrationAuthMethod `json:"authMethods,omitempty"` + // IsRegistered undocumented + IsRegistered *bool `json:"isRegistered,omitempty"` + // IsEnabled undocumented + IsEnabled *bool `json:"isEnabled,omitempty"` + // IsCapable undocumented + IsCapable *bool `json:"isCapable,omitempty"` + // IsMFARegistered undocumented + IsMFARegistered *bool `json:"isMfaRegistered,omitempty"` +} |
