-
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 #362 from commercetools/gen-sdk-updates
Update generated SDKs
- Loading branch information
Showing
5 changed files
with
54 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
17 changes: 17 additions & 0 deletions
17
....ImportApi/Generated/commercetoolsSdkImportApi/Models/Errors/IInvalidFieldsUpdateError.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,17 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.ImportApi.Models.Errors.InvalidFieldsUpdateError))] | ||
public partial interface IInvalidFieldsUpdateError : IErrorObject | ||
{ | ||
new string Message { get; set; } | ||
|
||
IList<string> Fields { get; set; } | ||
|
||
IEnumerable<string> FieldsEnumerable { set => Fields = value.ToList(); } | ||
|
||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...k.ImportApi/Generated/commercetoolsSdkImportApi/Models/Errors/InvalidFieldsUpdateError.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,21 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
namespace commercetools.Sdk.ImportApi.Models.Errors | ||
{ | ||
|
||
public partial class InvalidFieldsUpdateError : IInvalidFieldsUpdateError | ||
{ | ||
public string Code { get; set; } | ||
|
||
public string Message { get; set; } | ||
|
||
public IList<string> Fields { get; set; } | ||
|
||
public IEnumerable<string> FieldsEnumerable { set => Fields = value.ToList(); } | ||
public InvalidFieldsUpdateError() | ||
{ | ||
this.Code = "InvalidFieldUpdate"; | ||
} | ||
} | ||
} |
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