-
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.
Co-authored-by: Auto Mation <[email protected]>
- Loading branch information
1 parent
60bacf9
commit 3b62284
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
commercetools.Sdk/commercetools.Sdk.Api/Generated/Models/Errors/BadGatewayError.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 commercetools.Api.Models.Errors; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text.Json.Serialization; | ||
using commercetools.Base.CustomAttributes; | ||
|
||
|
||
namespace commercetools.Api.Models.Errors | ||
{ | ||
public partial class BadGatewayError : IBadGatewayError | ||
{ | ||
public string Code { get; set; } | ||
|
||
public string Message { get; set; } | ||
public BadGatewayError() | ||
{ | ||
this.Code = "BadGateway"; | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
commercetools.Sdk/commercetools.Sdk.Api/Generated/Models/Errors/IBadGatewayError.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,15 @@ | ||
using commercetools.Api.Models.Errors; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text.Json.Serialization; | ||
using commercetools.Base.CustomAttributes; | ||
|
||
|
||
namespace commercetools.Api.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Api.Models.Errors.BadGatewayError))] | ||
public partial interface IBadGatewayError : IErrorObject | ||
{ | ||
} | ||
} |
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