The constructor function that initializes remoteClass, remoteMethod, and the parameters used for the ApexRemote call.
defines what pricing variable to look for. For example: params = { productId: "01t1H000004adiqQAA", pricingElementId: "a2n1H000001DGAuQAO", priceListId: "a2l1H00000F71qLQAR", displayText: "iPhone X", isBasePrice: true | false }
Apex Rest URL that handles this request.
Salesforce organization.
The parameters required to edit a price list entry. The params object should look like below: params = { productId: "01t1H000004adiqQAA", pricingElementId: "a2n1H000001DGAuQAO", priceListId: "a2l1H00000F71qLQAR", displayText: "iPhone X", isBasePrice: true | false }
Remote class that handles this request.
Remote method that handles this request.
Rest URL that handles this request.
A method that returns the end point with apex rest url with namepsace if defined.
A method that returns the end point with rest url and or namepsace.
The constructor function that initializes the params to create the body of the PUT request.
Constructs the paramsArray for ApexRemote call.
array of args to be supplied to ApexRemote Call. The sequence of the element corresponds to the arguments of the Apex @RemoteAction method.
Generated using TypeDoc
This class defines an input for editing a price list entry.