-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AcsSmsDeliveryAttemptProperties.cs
38 lines (32 loc) · 1.53 KB
/
AcsSmsDeliveryAttemptProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.Messaging.EventGrid.SystemEvents
{
/// <summary> Schema for details of a delivery attempt. </summary>
public partial class AcsSmsDeliveryAttemptProperties
{
/// <summary> Initializes a new instance of <see cref="AcsSmsDeliveryAttemptProperties"/>. </summary>
internal AcsSmsDeliveryAttemptProperties()
{
}
/// <summary> Initializes a new instance of <see cref="AcsSmsDeliveryAttemptProperties"/>. </summary>
/// <param name="timestamp"> TimeStamp when delivery was attempted. </param>
/// <param name="segmentsSucceeded"> Number of segments that were successfully delivered. </param>
/// <param name="segmentsFailed"> Number of segments whose delivery failed. </param>
internal AcsSmsDeliveryAttemptProperties(DateTimeOffset? timestamp, int? segmentsSucceeded, int? segmentsFailed)
{
Timestamp = timestamp;
SegmentsSucceeded = segmentsSucceeded;
SegmentsFailed = segmentsFailed;
}
/// <summary> TimeStamp when delivery was attempted. </summary>
public DateTimeOffset? Timestamp { get; }
/// <summary> Number of segments that were successfully delivered. </summary>
public int? SegmentsSucceeded { get; }
/// <summary> Number of segments whose delivery failed. </summary>
public int? SegmentsFailed { get; }
}
}