diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-03-15 22:43:46 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-22 00:02:48 +0100 |
commit | 76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch) | |
tree | af3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go | |
parent | 802c80f40c709ba4967de317e40a8d6abe57f6be (diff) | |
download | matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2 matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip |
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go new file mode 100644 index 00000000..7bb1fc0a --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go @@ -0,0 +1,75 @@ +// Code generated by msgraph-generate.go 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"` +} |