You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/eventgrid/azure-messaging-eventgrid-systemevents/src/main/java/com/azure/messaging/eventgrid/systemevents/AcsSmsDeliveryAttemptProperties.java
+16-17
Original file line number
Diff line number
Diff line change
@@ -30,22 +30,26 @@ public final class AcsSmsDeliveryAttemptProperties implements JsonSerializable<A
30
30
* Number of segments that were successfully delivered
31
31
*/
32
32
@Generated
33
-
privateIntegersegmentsSucceeded;
33
+
privatefinalintsegmentsSucceeded;
34
34
35
35
/*
36
36
* Number of segments whose delivery failed
37
37
*/
38
38
@Generated
39
-
privateIntegersegmentsFailed;
39
+
privatefinalintsegmentsFailed;
40
40
41
41
/**
42
42
* Creates an instance of AcsSmsDeliveryAttemptProperties class.
43
43
*
44
44
* @param timestamp the timestamp value to set.
45
+
* @param segmentsSucceeded the segmentsSucceeded value to set.
46
+
* @param segmentsFailed the segmentsFailed value to set.
Copy file name to clipboardExpand all lines: sdk/eventgrid/azure-messaging-eventgrid-systemevents/src/main/java/com/azure/messaging/eventgrid/systemevents/AcsSmsDeliveryReportReceivedEventData.java
+22-68
Original file line number
Diff line number
Diff line change
@@ -24,13 +24,13 @@ public final class AcsSmsDeliveryReportReceivedEventData extends AcsSmsEventBase
24
24
* Status of Delivery
25
25
*/
26
26
@Generated
27
-
privateStringdeliveryStatus;
27
+
privatefinalStringdeliveryStatus;
28
28
29
29
/*
30
30
* Details about Delivery Status
31
31
*/
32
32
@Generated
33
-
privateStringdeliveryStatusDetails;
33
+
privatefinalStringdeliveryStatusDetails;
34
34
35
35
/*
36
36
* List of details of delivery attempts made
@@ -50,33 +50,24 @@ public final class AcsSmsDeliveryReportReceivedEventData extends AcsSmsEventBase
50
50
@Generated
51
51
privateStringtag;
52
52
53
-
/*
54
-
* The identity of SMS message receiver
55
-
*/
56
-
@Generated
57
-
privateStringto;
58
-
59
-
/*
60
-
* The identity of SMS message sender
61
-
*/
62
-
@Generated
63
-
privateStringfrom;
64
-
65
-
/*
66
-
* The identity of the SMS message
67
-
*/
68
-
@Generated
69
-
privateStringmessageId;
70
-
71
53
/**
72
54
* Creates an instance of AcsSmsDeliveryReportReceivedEventData class.
73
55
*
56
+
* @param messageId the messageId value to set.
57
+
* @param from the from value to set.
58
+
* @param to the to value to set.
59
+
* @param deliveryStatus the deliveryStatus value to set.
60
+
* @param deliveryStatusDetails the deliveryStatusDetails value to set.
74
61
* @param deliveryAttempts the deliveryAttempts value to set.
75
62
* @param receivedTimestamp the receivedTimestamp value to set.
Copy file name to clipboardExpand all lines: sdk/eventgrid/azure-messaging-eventgrid-systemevents/src/main/java/com/azure/messaging/eventgrid/systemevents/AcsSmsEventBaseProperties.java
+19-46
Original file line number
Diff line number
Diff line change
@@ -21,25 +21,32 @@ public class AcsSmsEventBaseProperties implements JsonSerializable<AcsSmsEventBa
21
21
* The identity of the SMS message
22
22
*/
23
23
@Generated
24
-
privateStringmessageId;
24
+
privatefinalStringmessageId;
25
25
26
26
/*
27
27
* The identity of SMS message sender
28
28
*/
29
29
@Generated
30
-
privateStringfrom;
30
+
privatefinalStringfrom;
31
31
32
32
/*
33
33
* The identity of SMS message receiver
34
34
*/
35
35
@Generated
36
-
privateStringto;
36
+
privatefinalStringto;
37
37
38
38
/**
39
39
* Creates an instance of AcsSmsEventBaseProperties class.
0 commit comments