<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

Relativity.Services.Security.Models.SAML2Provider

public class SAML2Provider
Represents a SAML2P external identity provider.
public string Audience { get; set; }

The target that will receive the Assertion.

public string Certificate { get; set; }

The X.509 certificate in PEM format that contains the public key of the SAML identity provider

public string Description { get; set; }

A description for this provider.

public bool IsEnabled { get; set; }

Whether this provider is enabled.

public string Issuer { get; set; }

The Issuer of the Assertion.

public string Name { get; set; }

A name for this provider; must be unique within the profile.

public Uri RedirectUri { get; set; }

The redirect uri that needs to get set at the identity provider.

public string SubjectClaimType { get; set; }

The claim type to use for getting the user's subject mapping. Defaults to "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier".

public SAML2Provider()