Class DeliverabilityAnalyticsSeriesPointDto
Bucketed deliverability analytics point for charts/tables
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DeliverabilityAnalyticsSeriesPointDto")]
public class DeliverabilityAnalyticsSeriesPointDto : IValidatableObject
Constructors
View SourceDeliverabilityAnalyticsSeriesPointDto()
Initializes a new instance of the DeliverabilityAnalyticsSeriesPointDto class.
Declaration
[JsonConstructor]
protected DeliverabilityAnalyticsSeriesPointDto()
DeliverabilityAnalyticsSeriesPointDto(DateTime, DateTime, DeliverabilityAnalyticsSummaryDto)
Initializes a new instance of the DeliverabilityAnalyticsSeriesPointDto class.
Declaration
public DeliverabilityAnalyticsSeriesPointDto(DateTime bucketStart = default, DateTime bucketEnd = default, DeliverabilityAnalyticsSummaryDto metrics = null)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime | bucketStart | bucketStart (required). |
| DateTime | bucketEnd | bucketEnd (required). |
| DeliverabilityAnalyticsSummaryDto | metrics | metrics (required). |
Properties
View SourceBucketEnd
Gets or Sets BucketEnd
Declaration
[DataMember(Name = "bucketEnd", IsRequired = true, EmitDefaultValue = true)]
public DateTime BucketEnd { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
BucketStart
Gets or Sets BucketStart
Declaration
[DataMember(Name = "bucketStart", IsRequired = true, EmitDefaultValue = true)]
public DateTime BucketStart { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Metrics
Gets or Sets Metrics
Declaration
[DataMember(Name = "metrics", IsRequired = true, EmitDefaultValue = true)]
public DeliverabilityAnalyticsSummaryDto Metrics { get; set; }
Property Value
| Type | Description |
|---|---|
| DeliverabilityAnalyticsSummaryDto |
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 |