1 | <?php |
||
25 | trait OperationTrait |
||
26 | { |
||
27 | protected $parameters = []; |
||
28 | |||
29 | /** |
||
30 | * Sets the responsegroups for the current operation |
||
31 | * Which responsegroups are available depends on the Operation you perform |
||
32 | * |
||
33 | * @param array $responseGroup The responsegroup as an array |
||
34 | * |
||
35 | * @see http://docs.aws.amazon.com/AWSECommerceService/latest/DG/CHAP_ResponseGroupsList.html |
||
36 | */ |
||
37 | 1 | public function setResponseGroup(array $responseGroup) |
|
43 | |||
44 | /** |
||
45 | * Returns all paramerters belonging to the current operation |
||
46 | * |
||
47 | * @return array |
||
48 | */ |
||
49 | 1 | public function getOperationParameter() |
|
53 | } |
||
54 |