-
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
26e4fc2
commit 83a40e9
Showing
12 changed files
with
71 additions
and
10 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
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
7 changes: 7 additions & 0 deletions
7
....Sdk/commercetools.Sdk.Api/Generated/Models/ProductSelections/AssignedProductSelection.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,7 @@ | ||
namespace commercetools.Api.Models.ProductSelections | ||
{ | ||
public partial class AssignedProductSelection : IAssignedProductSelection | ||
{ | ||
public IProductSelectionReference ProductSelection { get; set; } | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
....Sdk.Api/Generated/Models/ProductSelections/AssignedProductSelectionPagedQueryResponse.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,18 @@ | ||
using System.Collections.Generic; | ||
|
||
|
||
namespace commercetools.Api.Models.ProductSelections | ||
{ | ||
public partial class AssignedProductSelectionPagedQueryResponse : IAssignedProductSelectionPagedQueryResponse | ||
{ | ||
public long Limit { get; set; } | ||
|
||
public long Offset { get; set; } | ||
|
||
public long Count { get; set; } | ||
|
||
public long? Total { get; set; } | ||
|
||
public List<IAssignedProductSelection> Results { get; set; } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...Sdk/commercetools.Sdk.Api/Generated/Models/ProductSelections/IAssignedProductSelection.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; | ||
|
||
|
||
namespace commercetools.Api.Models.ProductSelections | ||
{ | ||
[DeserializeAs(typeof(commercetools.Api.Models.ProductSelections.AssignedProductSelection))] | ||
public partial interface IAssignedProductSelection | ||
{ | ||
IProductSelectionReference ProductSelection { get; set; } | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...Sdk.Api/Generated/Models/ProductSelections/IAssignedProductSelectionPagedQueryResponse.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.Collections.Generic; | ||
using commercetools.Base.CustomAttributes; | ||
|
||
|
||
namespace commercetools.Api.Models.ProductSelections | ||
{ | ||
[DeserializeAs(typeof(commercetools.Api.Models.ProductSelections.AssignedProductSelectionPagedQueryResponse))] | ||
public partial interface IAssignedProductSelectionPagedQueryResponse | ||
{ | ||
long Limit { get; set; } | ||
|
||
long Offset { get; set; } | ||
|
||
long Count { get; set; } | ||
|
||
long? Total { get; set; } | ||
|
||
List<IAssignedProductSelection> Results { 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