id; } /** * Set id. */ public function setId(int $id): PlatformKey { $this->id = $id; return $this; } /** * Get key id. */ public function getKid(): string { return $this->kid; } /** * Set key id. */ public function setKid(string $kid): PlatformKey { $this->kid = $kid; return $this; } /** * Get privateKey. */ public function getPrivateKey(): string { return $this->privateKey; } /** * Set privateKey. */ public function setPrivateKey(string $privateKey): PlatformKey { $this->privateKey = $privateKey; return $this; } /** * Get publicKey. */ public function getPublicKey(): string { return $this->publicKey; } /** * Set publicKey. */ public function setPublicKey(string $publicKey): PlatformKey { $this->publicKey = $publicKey; return $this; } }