-
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.
- Loading branch information
Auto Mation
committed
Oct 2, 2023
1 parent
99ae1d1
commit aa4d5b6
Showing
12 changed files
with
254 additions
and
39 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
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
22 changes: 22 additions & 0 deletions
22
...dk/commercetools.Sdk.Api/Generated/Models/ApprovalFlows/ApprovalFlowPagedQueryResponse.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,22 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
|
||
namespace commercetools.Sdk.Api.Models.ApprovalFlows | ||
{ | ||
|
||
public partial class ApprovalFlowPagedQueryResponse : IApprovalFlowPagedQueryResponse | ||
{ | ||
public long Limit { get; set; } | ||
|
||
public long Offset { get; set; } | ||
|
||
public long Count { get; set; } | ||
|
||
public long? Total { get; set; } | ||
|
||
public IList<IApprovalFlow> Results { get; set; } | ||
public IEnumerable<IApprovalFlow> ResultsEnumerable { set => Results = value.ToList(); } | ||
|
||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...k/commercetools.Sdk.Api/Generated/Models/ApprovalFlows/IApprovalFlowPagedQueryResponse.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.Collections.Generic; | ||
using System.Linq; | ||
using commercetools.Base.CustomAttributes; | ||
|
||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.ApprovalFlows | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.ApprovalFlows.ApprovalFlowPagedQueryResponse))] | ||
public partial interface IApprovalFlowPagedQueryResponse | ||
{ | ||
long Limit { get; set; } | ||
|
||
long Offset { get; set; } | ||
|
||
long Count { get; set; } | ||
|
||
long? Total { get; set; } | ||
|
||
IList<IApprovalFlow> Results { get; set; } | ||
IEnumerable<IApprovalFlow> ResultsEnumerable { set => Results = value.ToList(); } | ||
|
||
|
||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...dk/commercetools.Sdk.Api/Generated/Models/ApprovalRules/ApprovalRulePagedQueryResponse.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,22 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
|
||
namespace commercetools.Sdk.Api.Models.ApprovalRules | ||
{ | ||
|
||
public partial class ApprovalRulePagedQueryResponse : IApprovalRulePagedQueryResponse | ||
{ | ||
public long Limit { get; set; } | ||
|
||
public long Offset { get; set; } | ||
|
||
public long Count { get; set; } | ||
|
||
public long? Total { get; set; } | ||
|
||
public IList<IApprovalRule> Results { get; set; } | ||
public IEnumerable<IApprovalRule> ResultsEnumerable { set => Results = value.ToList(); } | ||
|
||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...k/commercetools.Sdk.Api/Generated/Models/ApprovalRules/IApprovalRulePagedQueryResponse.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.Collections.Generic; | ||
using System.Linq; | ||
using commercetools.Base.CustomAttributes; | ||
|
||
// ReSharper disable CheckNamespace | ||
namespace commercetools.Sdk.Api.Models.ApprovalRules | ||
{ | ||
[DeserializeAs(typeof(commercetools.Sdk.Api.Models.ApprovalRules.ApprovalRulePagedQueryResponse))] | ||
public partial interface IApprovalRulePagedQueryResponse | ||
{ | ||
long Limit { get; set; } | ||
|
||
long Offset { get; set; } | ||
|
||
long Count { get; set; } | ||
|
||
long? Total { get; set; } | ||
|
||
IList<IApprovalRule> Results { get; set; } | ||
IEnumerable<IApprovalRule> ResultsEnumerable { set => Results = value.ToList(); } | ||
|
||
|
||
} | ||
} |
Oops, something went wrong.