File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2145,7 +2145,8 @@ $deals->listProductsAttachedToADeal($collect);
2145
2145
2146
2146
2147
2147
``` php
2148
- function addAProductToTheDealEventuallyCreatingANewItemCalledADealProduct($options)
2148
+ function addAProductToADeal($options);
2149
+ function addAProductToTheDealEventuallyCreatingANewItemCalledADealProduct($options);
2149
2150
```
2150
2151
2151
2152
#### Parameters
@@ -2165,8 +2166,9 @@ $collect['id'] = $id;
2165
2166
$body = array('key' => 'value');
2166
2167
$collect['body'] = $body;
2167
2168
2168
-
2169
- $result = $deals->addAProductToTheDealEventuallyCreatingANewItemCalledADealProduct($collect);
2169
+ $result = $deals->addAProductToADeal($collect);
2170
+ // OR
2171
+ // $result = $deals->addAProductToTheDealEventuallyCreatingANewItemCalledADealProduct($collect);
2170
2172
2171
2173
```
2172
2174
@@ -2177,7 +2179,8 @@ $result = $deals->addAProductToTheDealEventuallyCreatingANewItemCalledADealProdu
2177
2179
2178
2180
2179
2181
``` php
2180
- function updateProductAttachmentDetailsOfTheDealProductAProductAlreadyAttachedToADeal($options)
2182
+ function updateTheProductAttachedToADeal($options);
2183
+ function updateProductAttachmentDetailsOfTheDealProductAProductAlreadyAttachedToADeal($options);
2181
2184
```
2182
2185
2183
2186
#### Parameters
@@ -2230,8 +2233,9 @@ $collect['comments'] = $comments;
2230
2233
$enabledFlag = int::ENUM_0;
2231
2234
$collect['enabledFlag'] = $enabledFlag;
2232
2235
2233
-
2234
- $result = $deals->updateProductAttachmentDetailsOfTheDealProductAProductAlreadyAttachedToADeal($collect);
2236
+ $result = $deals->updateTheProductAttachedToADeal($collect);
2237
+ // OR
2238
+ // $result = $deals->updateProductAttachmentDetailsOfTheDealProductAProductAlreadyAttachedToADeal($collect);
2235
2239
2236
2240
```
2237
2241
You can’t perform that action at this time.
0 commit comments