Table of Contents

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

ReadOnlyAdditionalProperties

Credentials

[JsonPropertyName("credentials")]
public EmailProviderCredentials? Credentials { get; set; }

Property Value

EmailProviderCredentials

DefaultFromAddress

Email address to use as "from" when no other address specified.

[JsonPropertyName("default_from_address")]
public string? DefaultFromAddress { get; set; }

Property Value

string

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

string

Settings

[JsonPropertyName("settings")]
public Dictionary<string, object?>? Settings { get; set; }

Property Value

Dictionary<string, object>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.