commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
EnumKeyAlreadyExistsError.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
15 {
16  public const FIELD_CONFLICTING_ENUM_KEY = 'conflictingEnumKey';
17  public const FIELD_CONFLICTING_ATTRIBUTE_NAME = 'conflictingAttributeName';
18 
23  public function getCode();
24 
31  public function getMessage();
32 
39  public function getConflictingEnumKey();
40 
47  public function getConflictingAttributeName();
48 
52  public function setMessage(?string $message): void;
53 
57  public function setConflictingEnumKey(?string $conflictingEnumKey): void;
58 
62  public function setConflictingAttributeName(?string $conflictingAttributeName): void;
63 }
setConflictingAttributeName(?string $conflictingAttributeName)