davidtsadler / ebay-sdk-php

An eBay SDK for PHP. Use the eBay API in your PHP projects.
Apache License 2.0
349 stars 341 forks source link

Class 'DTS\eBaySDK\ResolutionCaseManagement\Types\AppealRef' not found #35

Closed davidtsadler closed 7 years ago

davidtsadler commented 8 years ago

SDK is missing the AppealRef class that relates to the ~appealRef type. This type may be missing from the WSDL.

Vilintritenmert commented 8 years ago
public function getEBPCaseDetail($job)
{
    $this->initRCM();
    $request = new ResolutionCaseManagement\Types\GetEBPCaseDetailRequest();
    $request->caseId = new ResolutionCaseManagement\Types\CaseIdType();
    $r = explode(',', $job['ids']);
    $request->caseId->id = $r[0];  // 'id  case'
    $request->caseId->type = $r[1]; // 'EBP_INR'
    return $this->rcm->getEBPCaseDetail($request);
}
davidtsadler commented 8 years ago

@Vilintritenmert Thank you for the example.