本文整理匯總了PHP中Ingenico\Connect\Sdk\DataObject::toJson方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataObject::toJson方法的具體用法?PHP DataObject::toJson怎麽用?PHP DataObject::toJson使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Ingenico\Connect\Sdk\DataObject
的用法示例。
在下文中一共展示了DataObject::toJson方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: put
/**
* @param ResponseClassMap $responseClassMap
* @param string $relativeUriPath
* @param string $clientMetaInfo
* @param DataObject|null $requestBodyObject
* @param RequestObject|null $requestParameters
* @param CallContext $callContext
* @return DataObject
* @throws Exception
*/
public function put(ResponseClassMap $responseClassMap, $relativeUriPath, $clientMetaInfo = '', DataObject $requestBodyObject = null, RequestObject $requestParameters = null, CallContext $callContext = null)
{
$relativeUriPathWithRequestParameters = $this->getRelativeUriPathWithRequestParameters($relativeUriPath, $requestParameters);
$requestHeaders = $this->getRequestHeaders('PUT', $relativeUriPathWithRequestParameters, $clientMetaInfo, $callContext);
$requestBody = $requestBodyObject ? $requestBodyObject->toJson() : '';
$connectionResponse = $this->getConnection()->put($this->communicatorConfiguration->getApiEndpoint() . $relativeUriPathWithRequestParameters, $requestHeaders, $requestBody, $this->communicatorConfiguration->getProxyConfiguration());
$response = $this->getResponseFactory()->createResponse($connectionResponse, $responseClassMap, $callContext);
$httpStatusCode = $connectionResponse->getHttpStatusCode();
if ($httpStatusCode >= 400) {
throw $this->getResponseExceptionFactory()->createException($httpStatusCode, $response, $callContext);
}
return $response;
}