diff --git a/README.md b/README.md index f517942..a814cd8 100644 --- a/README.md +++ b/README.md @@ -305,7 +305,7 @@ Console.WriteLine(resp.Slug); ```csharp Notification notification = client.Notification.GetNotificationByTrackingId(""); -Console.WriteLine(notificaiton.Emails[0]); +Console.WriteLine(notification.Emails[0]); ``` **POST** /notifications/:id/add @@ -318,8 +318,8 @@ notification.Emails = new string?[] { "" }; request.Notification = notification; options.AddNotificationByTrackingIdRequest = request; -Notification notification = client.Notification.AddNotificationByTrackingId("", options); -Console.WriteLine(notification.Emails[0]); +Notification result = client.Notification.AddNotificationByTrackingId("", options); +Console.WriteLine(result.Emails[0]); ``` **POST** /notifications/:id/remove @@ -332,8 +332,8 @@ notification.Emails = new string?[] { "" }; request.Notification = notification; options.DeleteNotificationByTrackingIdRequest = request; -Notification notification = client.Notification.DeleteNotificationByTrackingId("", options); -Console.WriteLine(notification.Emails[0]); +Notification result = client.Notification.DeleteNotificationByTrackingId("", options); +Console.WriteLine(result.Emails[0]); ``` ### /estimated-delivery-date diff --git a/icon.png b/icon.png old mode 100755 new mode 100644 index c683457..b1b8e59 Binary files a/icon.png and b/icon.png differ