Created
December 20, 2016 14:18
-
-
Save enreeco/d2178b6549965f88ba166e6b436bf4e9 to your computer and use it in GitHub Desktop.
Apex Webservice Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Title | |
* | |
* @author | |
* @version 1.0 | |
* @description | |
* @uses | |
* @history | |
* yyyy-mm-dd : | |
*/ | |
global class CaseServices { | |
global class MultiRequest { | |
webservice String req{get;set;} | |
} | |
global class MultiResponse { | |
webservice String res{get;set;} | |
} | |
webservice static MultiRequest post(MultiRequest multiRequest) { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment