-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #367 from commercetools/gen-sdk-updates
Update generated SDKs
- Loading branch information
Showing
5 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...rated/commercetoolsSdkImportApi/Models/Errors/INewMasterVariantAdditionNotAllowedError.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.ImportApi.Models.Errors.NewMasterVariantAdditionNotAllowedError))] | ||
public partial interface INewMasterVariantAdditionNotAllowedError : IErrorObject | ||
{ | ||
new string Message { get; set; } | ||
|
||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...erated/commercetoolsSdkImportApi/Models/Errors/NewMasterVariantAdditionNotAllowedError.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
|
||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
|
||
public partial class NewMasterVariantAdditionNotAllowedError : INewMasterVariantAdditionNotAllowedError | ||
{ | ||
public string Code { get; set; } | ||
|
||
public string Message { get; set; } | ||
public NewMasterVariantAdditionNotAllowedError() | ||
{ | ||
this.Code = "NewMasterVariantAdditionNotAllowed"; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters