Table of Contents

Class EmailClients

Namespace
Mailtrap.TestingMessages.Models
Assembly
Mailtrap.Abstractions.dll

Represents details of email clients affected by HTML analysis error.

public sealed record EmailClients : IEquatable<EmailClients>
Inheritance
EmailClients
Implements

Properties

Desktop

Gets the list of desktop clients affected.

[JsonPropertyName("desktop")]
[JsonPropertyOrder(1)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Desktop { get; }

Property Value

IList<string>

List of desktop clients affected.

Mobile

Gets the list of mobile clients affected.

[JsonPropertyName("mobile")]
[JsonPropertyOrder(2)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Mobile { get; }

Property Value

IList<string>

List of mobile clients affected.

Web

Gets the list of web clients affected.

[JsonPropertyName("web")]
[JsonPropertyOrder(3)]
[JsonObjectCreationHandling(JsonObjectCreationHandling.Populate)]
public IList<string> Web { get; }

Property Value

IList<string>

List of web clients affected.