-
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.
- Loading branch information
1 parent
eb2fe7b
commit eade463
Showing
35 changed files
with
510 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
12 changes: 12 additions & 0 deletions
12
...cetools.Sdk.Api/Generated/commercetoolsSdkApi/Models/Errors/GraphQLSearchNotReadyError.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,12 @@ | ||
namespace commercetools.Sdk.Api.Models.Errors | ||
{ | ||
|
||
public partial class GraphQLSearchNotReadyError : IGraphQLSearchNotReadyError | ||
{ | ||
public string Code { get; set; } | ||
public GraphQLSearchNotReadyError() | ||
{ | ||
this.Code = "SearchNotReady"; | ||
} | ||
} | ||
} |
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
...etools.Sdk.Api/Generated/commercetoolsSdkApi/Models/Errors/IGraphQLSearchNotReadyError.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.Api.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Errors.GraphQLSearchNotReadyError))] | ||
public partial interface IGraphQLSearchNotReadyError : IGraphQLErrorObject | ||
{ | ||
new string Code { get; set; } | ||
|
||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...commercetools.Sdk.Api/Generated/commercetoolsSdkApi/Models/Errors/ISearchNotReadyError.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,13 @@ | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.Errors | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.Errors.SearchNotReadyError))] | ||
public partial interface ISearchNotReadyError : IErrorObject | ||
{ | ||
new string Code { get; set; } | ||
|
||
new string Message { get; set; } | ||
|
||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
.../commercetools.Sdk.Api/Generated/commercetoolsSdkApi/Models/Errors/SearchNotReadyError.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,14 @@ | ||
namespace commercetools.Sdk.Api.Models.Errors | ||
{ | ||
|
||
public partial class SearchNotReadyError : ISearchNotReadyError | ||
{ | ||
public string Code { get; set; } | ||
|
||
public string Message { get; set; } | ||
public SearchNotReadyError() | ||
{ | ||
this.Code = "SearchNotReady"; | ||
} | ||
} | ||
} |
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
14 changes: 14 additions & 0 deletions
14
....Api/Generated/commercetoolsSdkApi/Models/ProductTailorings/IProductTailoringAttribute.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,14 @@ | ||
using System; | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.ProductTailorings.ProductTailoringAttribute))] | ||
public partial interface IProductTailoringAttribute | ||
{ | ||
string Name { get; set; } | ||
|
||
Object Value { get; set; } | ||
|
||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...rated/commercetoolsSdkApi/Models/ProductTailorings/IProductTailoringSetAttributeAction.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 System; | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.ProductTailorings.ProductTailoringSetAttributeAction))] | ||
public partial interface IProductTailoringSetAttributeAction : IProductTailoringUpdateAction | ||
{ | ||
long? VariantId { get; set; } | ||
|
||
string Sku { get; set; } | ||
|
||
string Name { get; set; } | ||
|
||
Object Value { get; set; } | ||
|
||
bool? Staged { get; set; } | ||
|
||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...etoolsSdkApi/Models/ProductTailorings/IProductTailoringSetAttributeInAllVariantsAction.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 @@ | ||
using System; | ||
using commercetools.Base.CustomAttributes; | ||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.ProductTailorings.ProductTailoringSetAttributeInAllVariantsAction))] | ||
public partial interface IProductTailoringSetAttributeInAllVariantsAction : IProductTailoringUpdateAction | ||
{ | ||
string Name { get; set; } | ||
|
||
Object Value { get; set; } | ||
|
||
bool? Staged { get; set; } | ||
|
||
} | ||
} |
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
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
12 changes: 12 additions & 0 deletions
12
...k.Api/Generated/commercetoolsSdkApi/Models/ProductTailorings/ProductTailoringAttribute.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,12 @@ | ||
using System; | ||
|
||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
|
||
public partial class ProductTailoringAttribute : IProductTailoringAttribute | ||
{ | ||
public string Name { get; set; } | ||
|
||
public Object Value { get; set; } | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...erated/commercetoolsSdkApi/Models/ProductTailorings/ProductTailoringSetAttributeAction.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,24 @@ | ||
using System; | ||
|
||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
|
||
public partial class ProductTailoringSetAttributeAction : IProductTailoringSetAttributeAction | ||
{ | ||
public string Action { get; set; } | ||
|
||
public long? VariantId { get; set; } | ||
|
||
public string Sku { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public Object Value { get; set; } | ||
|
||
public bool? Staged { get; set; } | ||
public ProductTailoringSetAttributeAction() | ||
{ | ||
this.Action = "setAttribute"; | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...cetoolsSdkApi/Models/ProductTailorings/ProductTailoringSetAttributeInAllVariantsAction.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 System; | ||
|
||
namespace commercetools.Sdk.Api.Models.ProductTailorings | ||
{ | ||
|
||
public partial class ProductTailoringSetAttributeInAllVariantsAction : IProductTailoringSetAttributeInAllVariantsAction | ||
{ | ||
public string Action { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public Object Value { get; set; } | ||
|
||
public bool? Staged { get; set; } | ||
public ProductTailoringSetAttributeInAllVariantsAction() | ||
{ | ||
this.Action = "setAttributeInAllVariants"; | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.