Skip to content

Commit 280c858

Browse files
authored
Update shipping-providers.md
1 parent 16db790 commit 280c858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

13/umbraco-commerce/key-concepts/shipping-providers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public class MyShippingProviderSettings
2828
[ShippingProviderSetting(Name = "API Key",
2929
Description = "The API key to the shipping opperators API",
3030
SortOrder = 100)]
31-
public string ApieKey { get; set; }
31+
public string ApiKey { get; set; }
3232

3333
...
3434
}
3535

3636
```
3737

38-
All Shipping Providers inherit from a base class `ShippingProviderBase<TSettings>`. `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.
38+
All Shipping Providers inherit from a base class `ShippingProviderBase<TSettings>`. `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.
3939

4040
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.
4141

0 commit comments

Comments
 (0)