Namespace LemonEdge.ApiConnector.Models
Classes
ApiParameter
ApiParameter is used to store a Key that will be used as a direct substitution in an Api Query string. On implementation the InsertParameter method must be implemented. InsertParameter takes in the Api Query string that the parameters are being created for.
ApiParameter<T>
ApiQuery
ApiQuery is the base class for an API call. HttpMethod must be GET or POST RequestUri is the full API URL with any parameters added in as "@ParameterName" these parameters will be substututed later for actual values. Body is an optional parameter that can be used on POST calls.