Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
feat(Products): add support to set EnumType and LocalizedEnumType att…
Browse files Browse the repository at this point in the history
…ributes by key in all variants
  • Loading branch information
Jens Schulze committed Aug 6, 2015
1 parent df88267 commit e07cad6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* @method ProductSetAttributeInAllVariantsAction setAction(string $action = null)
* @method string getName()
* @method ProductSetAttributeInAllVariantsAction setName(string $name = null)
* @method string getValue()
* @method ProductSetAttributeInAllVariantsAction setValue(string $value = null)
* @method getValue()
* @method ProductSetAttributeInAllVariantsAction setValue($value = null)
* @method bool getStaged()
* @method ProductSetAttributeInAllVariantsAction setStaged(bool $staged = null)
*/
Expand All @@ -27,7 +27,7 @@ public function getFields()
return [
'action' => [static::TYPE => 'string'],
'name' => [static::TYPE => 'string'],
'value' => [static::TYPE => 'string'],
'value' => [],
'staged' => [static::TYPE => 'bool'],
];
}
Expand Down

0 comments on commit e07cad6

Please # to comment.