From 280c858980dd1c82b662bffcaaeddd51821e9b3e Mon Sep 17 00:00:00 2001 From: Busra Sengul Date: Tue, 14 Jan 2025 13:26:26 +0000 Subject: [PATCH 1/2] Update shipping-providers.md --- 13/umbraco-commerce/key-concepts/shipping-providers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/13/umbraco-commerce/key-concepts/shipping-providers.md b/13/umbraco-commerce/key-concepts/shipping-providers.md index a2d30bf6dd8..89a584e712f 100644 --- a/13/umbraco-commerce/key-concepts/shipping-providers.md +++ b/13/umbraco-commerce/key-concepts/shipping-providers.md @@ -28,14 +28,14 @@ public class MyShippingProviderSettings [ShippingProviderSetting(Name = "API Key", Description = "The API key to the shipping opperators API", SortOrder = 100)] - public string ApieKey { get; set; } + public string ApiKey { get; set; } ... } ``` -All Shipping Providers inherit from a base class `ShippingProviderBase`. `TSettings` is the type of a Plain Old Class Object (POCO) model class representing the Shipping Providers settings. The class must be decorated with `ShippingProviderAttribute` which defines the Shipping Providers `alias`, `name` and `description`, and can also specify an `icon` to be displayed in the Umbraco Commerce backoffice. +All Shipping Providers inherit from a base class `ShippingProviderBase`. `TSettings` is the type of a Plain Old Class Object (POCO) model class representing the Shipping Provider's settings. The class must be decorated with `ShippingProviderAttribute` which defines the Shipping Providers `alias`, `name` and `description`, and can also specify an `icon` to be displayed in the Umbraco Commerce backoffice. The settings class consists of a series of properties, each decorated with a `ShippingProviderSettingAttribute` defining a name, description, and possible angular editor view file. These will all be used to dynamically build an editor interface for the given settings in the backoffice. From a14fbde93ee9d208fe27189eef6273638fdceae9 Mon Sep 17 00:00:00 2001 From: Busra Sengul Date: Tue, 14 Jan 2025 13:28:11 +0000 Subject: [PATCH 2/2] Update shipping-providers.md --- 13/umbraco-commerce/key-concepts/shipping-providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-commerce/key-concepts/shipping-providers.md b/13/umbraco-commerce/key-concepts/shipping-providers.md index 89a584e712f..d1b2b80285d 100644 --- a/13/umbraco-commerce/key-concepts/shipping-providers.md +++ b/13/umbraco-commerce/key-concepts/shipping-providers.md @@ -26,7 +26,7 @@ public class MyShippingProvider : ShippingProviderBase