Describes an identity acquisition request.
public sealed record IdentityRequest(string Provider, IReadOnlyCollection<string> Scopes, bool RequireMfa, IReadOnlyDictionary<string, string> Parameters) : IEquatable<IdentityRequest>
kind:method, kind:property, kind:ctor. Press Esc to clear.IdentityRequest(String, IReadOnlyCollection<String>, Boolean, IReadOnlyDictionary<String, String>)Describes an identity acquisition request.ParametersAdditional provider-specific parameters (tenant ids, resource URLs, etc.).ProviderIdentity provider identifier (e.g., azuread, okta).RequireMfaWhether multi-factor authentication must be satisfied.ScopesRequested scopes/permissions.