TYPE_PRIMITIVE
TYPE_PRIMITIVE = 'primitive'
Interface defining data objects that hold the information of an API operation
getServiceDescription() : \Guzzle\Service\Description\ServiceDescriptionInterface|null
Get the service description that the operation belongs to
setServiceDescription(\Guzzle\Service\Description\ServiceDescriptionInterface $description) : self
Set the service description that the operation belongs to
\Guzzle\Service\Description\ServiceDescriptionInterface | $description | Service description |
getParam(string $param) : \Guzzle\Service\Description\Parameter|null
Get a single parameter of the operation
string | $param | Parameter to retrieve by name |
getResponseClass() : string|null
Get what is returned from the method. Can be a primitive, class name, or model. For example, the responseClass could be 'array', which would inherently use a responseType of 'primitive'. Using a class name would set a responseType of 'class'. Specifying a model by ID will use a responseType of 'model'.