Class TenantReputationFindingsDto
TenantReputationFindingsDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "TenantReputationFindingsDto")]
public class TenantReputationFindingsDto : IValidatableObject
Constructors
View SourceTenantReputationFindingsDto()
Initializes a new instance of the TenantReputationFindingsDto class.
Declaration
[JsonConstructor]
protected TenantReputationFindingsDto()
TenantReputationFindingsDto(DateTime, Guid, List<TenantReputationFindingDto>)
Initializes a new instance of the TenantReputationFindingsDto class.
Declaration
public TenantReputationFindingsDto(DateTime generatedAt = default, Guid userId = default, List<TenantReputationFindingDto> findings = null)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime | generatedAt | generatedAt (required). |
| Guid | userId | userId (required). |
| List<TenantReputationFindingDto> | findings | findings (required). |
Properties
View SourceFindings
Gets or Sets Findings
Declaration
[DataMember(Name = "findings", IsRequired = true, EmitDefaultValue = true)]
public List<TenantReputationFindingDto> Findings { get; set; }
Property Value
| Type | Description |
|---|---|
| List<TenantReputationFindingDto> |
GeneratedAt
Gets or Sets GeneratedAt
Declaration
[DataMember(Name = "generatedAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime GeneratedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
UserId
Gets or Sets UserId
Declaration
[DataMember(Name = "userId", IsRequired = true, EmitDefaultValue = true)]
public Guid UserId { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
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 |