-
Notifications
You must be signed in to change notification settings - Fork 13
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 #349 from commercetools/gen-sdk-updates
Update generated SDKs
- Loading branch information
Showing
5 changed files
with
71 additions
and
11 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
20 changes: 20 additions & 0 deletions
20
...mportApi/Generated/commercetoolsSdkImportApi/Models/Errors/IReferencedResourceNotFound.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,20 @@ | ||
using commercetools.Sdk.ImportApi.Models.Common; | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.ImportApi.Models.Errors.ReferencedResourceNotFound))] | ||
public partial interface IReferencedResourceNotFound : IErrorObject | ||
{ | ||
new string Code { get; set; } | ||
|
||
new string Message { get; set; } | ||
|
||
IReferenceType TypeId { get; set; } | ||
|
||
string Id { get; set; } | ||
|
||
string Key { get; set; } | ||
|
||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...ImportApi/Generated/commercetoolsSdkImportApi/Models/Errors/ReferencedResourceNotFound.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,23 @@ | ||
using commercetools.Sdk.ImportApi.Models.Common; | ||
|
||
|
||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
|
||
public partial class ReferencedResourceNotFound : IReferencedResourceNotFound | ||
{ | ||
public string Code { get; set; } | ||
|
||
public string Message { get; set; } | ||
|
||
public IReferenceType TypeId { get; set; } | ||
|
||
public string Id { get; set; } | ||
|
||
public string Key { get; set; } | ||
public ReferencedResourceNotFound() | ||
{ | ||
this.Code = "ReferencedResourceNotFound"; | ||
} | ||
} | ||
} |
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