-
Notifications
You must be signed in to change notification settings - Fork 8
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 #35 from commercetools/gen-sdk-updates
Update generated SDKs
- Loading branch information
Showing
136 changed files
with
11,235 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
hash=786b9ece4b0f3ad1792a9502da69412ba14153fd | ||
hash=05a877634096132acd39e22070622c84161d8ff3 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
hash=786b9ece4b0f3ad1792a9502da69412ba14153fd | ||
hash=05a877634096132acd39e22070622c84161d8ff3 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
hash=786b9ece4b0f3ad1792a9502da69412ba14153fd | ||
hash=05a877634096132acd39e22070622c84161d8ff3 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
hash=786b9ece4b0f3ad1792a9502da69412ba14153fd | ||
hash=05a877634096132acd39e22070622c84161d8ff3 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
hash=786b9ece4b0f3ad1792a9502da69412ba14153fd | ||
hash=05a877634096132acd39e22070622c84161d8ff3 |
46 changes: 46 additions & 0 deletions
46
lib/commercetools-history/src/Models/Change/AddDiscountCodeChange.php
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,46 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* This file has been auto generated | ||
* Do not change it. | ||
*/ | ||
|
||
namespace Commercetools\History\Models\Change; | ||
|
||
use Commercetools\Base\JsonObject; | ||
use Commercetools\Base\DateTimeImmutableCollection; | ||
use Commercetools\History\Models\Common\DiscountCodeInfo; | ||
|
||
interface AddDiscountCodeChange extends Change | ||
{ | ||
|
||
public const FIELD_NEXT_VALUE = 'nextValue'; | ||
|
||
/** | ||
* @return null|string | ||
*/ | ||
public function getType(); | ||
|
||
/** | ||
* <p>Update action for <code>addDiscountCode</code></p> | ||
* | ||
* @return null|string | ||
*/ | ||
public function getChange(); | ||
|
||
/** | ||
* @return null|DiscountCodeInfo | ||
*/ | ||
public function getNextValue(); | ||
|
||
/** | ||
* @param ?string $change | ||
*/ | ||
public function setChange(?string $change): void; | ||
|
||
/** | ||
* @param ?DiscountCodeInfo $nextValue | ||
*/ | ||
public function setNextValue(?DiscountCodeInfo $nextValue): void; | ||
} |
Oops, something went wrong.