Class GetEmailProviderResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetEmailProviderResponseContent : IJsonOnDeserialized, IEquatable<GetEmailProviderResponseContent>
- Inheritance
-
GetEmailProviderResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Credentials
[JsonPropertyName("credentials")]
public EmailProviderCredentials? Credentials { get; set; }
Property Value
DefaultFromAddress
Email address to use as "from" when no other address specified.
[JsonPropertyName("default_from_address")]
public string? DefaultFromAddress { get; set; }
Property Value
Enabled
Whether the provider is enabled (true) or disabled (false).
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
Name
Name of the email provider. Can be mailgun, mandrill, sendgrid, ses, sparkpost, smtp, azure_cs, ms365, or custom.
[JsonPropertyName("name")]
public string? Name { get; set; }
Property Value
Settings
[JsonPropertyName("settings")]
public Dictionary<string, object?>? Settings { 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.