Class ClientAddonSapapi
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
SAP API addon configuration.
[Serializable]
public record ClientAddonSapapi : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientAddonSapapi>
- Inheritance
-
ClientAddonSapapi
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Clientid
If activated in the OAuth 2.0 client configuration (transaction SOAUTH2) the SAML attribute client_id must be set and equal the client_id form parameter of the access token request.
[JsonPropertyName("clientid")]
public string? Clientid { get; set; }
Property Value
NameIdentifierFormat
NameID element of the Subject which can be used to express the user's identity. Defaults to urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified.
[JsonPropertyName("nameIdentifierFormat")]
public string? NameIdentifierFormat { get; set; }
Property Value
Scope
Requested scope for SAP APIs.
[JsonPropertyName("scope")]
public string? Scope { get; set; }
Property Value
ServicePassword
Service account password to use to authenticate API calls to the token endpoint.
[JsonPropertyName("servicePassword")]
public string? ServicePassword { get; set; }
Property Value
TokenEndpointUrl
Your SAP OData server OAuth2 token endpoint URL.
[JsonPropertyName("tokenEndpointUrl")]
public string? TokenEndpointUrl { get; set; }
Property Value
UsernameAttribute
Name of the property in the user object that maps to a SAP username. e.g. email.
[JsonPropertyName("usernameAttribute")]
public string? UsernameAttribute { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.