JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrprofileId = $profileId; $this->methodId = $methodId; $this->issuerId = $issuerId; $response = $this->rest_create([], []); $this->resetResourceIds(); return $response; } public function disable(string $profileId, string $methodId, string $issuerId) { $this->profileId = $profileId; $this->methodId = $methodId; return $this->rest_delete($issuerId); } protected function resetResourceIds() { $this->profileId = null; $this->methodId = null; $this->issuerId = null; } /** * @return string * @throws ApiException */ public function getResourcePath() { if (! $this->profileId) { throw new ApiException("No profileId provided."); } if (! $this->methodId) { throw new ApiException("No methodId provided."); } $path = "profiles/{$this->profileId}/methods/{$this->methodId}/issuers"; if ($this->issuerId) { $path .= "/$this->issuerId"; } return $path; } /** * Get the object that is used by this API endpoint. Every API endpoint uses one type of object. * * @return Issuer */ protected function getResourceObject() { return new Issuer($this->client); } }