I hereby claim:
- I am drobakowski on github.
- I am davidrobakowski (https://keybase.io/davidrobakowski) on keybase.
- I have a public key ASABlzdEroj3u1vV4-r8oHKjjBmeBWwGR7A6dz7jbE72CQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| @RestResource(urlMapping='/Lead/*') | |
| global with sharing class RestLeadConvert { | |
| @HttpPost | |
| global static void convertLead() { | |
| RestRequest req = RestContext.request; | |
| RestResponse res = RestContext.response; | |
| res.addHeader('Content-Type', 'application/json'); | |
| String leadId = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1); |
| # EditorConfig file: http://EditorConfig.org | |
| # top-most EditorConfig file | |
| root = true | |
| # Unix-style newlines with a newline ending every file | |
| [*] | |
| end_of_line = lf | |
| insert_final_newline = true | |
| charset = utf-8 |
| -module(module_with_compiler_directive). | |
| -ifdef(have_callback_support). | |
| -callback start_link(Args) -> {ok, Pid} | | |
| {error, {already_started, Pid}} | | |
| {error, Reason} when | |
| Args :: proplists:proplist(), | |
| Pid :: pid(), | |
| Reason :: term(). |