Class EmailLinksResult
Links found in HTML
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "EmailLinksResult")]
public class EmailLinksResult : IValidatableObject
Constructors
View SourceEmailLinksResult()
Initializes a new instance of the EmailLinksResult class.
Declaration
[JsonConstructor]
protected EmailLinksResult()
EmailLinksResult(List<string>, string)
Initializes a new instance of the EmailLinksResult class.
Declaration
public EmailLinksResult(List<string> links = null, string body = null)
Parameters
Type | Name | Description |
---|---|---|
List<string> | links | links (required). |
string | body | body (required). |
Properties
View SourceBody
Gets or Sets Body
Declaration
[DataMember(Name = "body", IsRequired = true, EmitDefaultValue = true)]
public string Body { get; set; }
Property Value
Type | Description |
---|---|
string |
Links
Gets or Sets Links
Declaration
[DataMember(Name = "links", IsRequired = true, EmitDefaultValue = true)]
public List<string> Links { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |