appKey; } /** * @param string $appKey */ public function setAppKey(string $appKey) { $this->appKey = $appKey; } /** * @return string */ public function getAppSecret(): string { return $this->appSecret; } /** * @param string $appSecret */ public function setAppSecret(string $appSecret) { $this->appSecret = $appSecret; } /** * @return int */ public function getOrderPrice(): int { return $this->orderPrice; } /** * @param int $orderPrice */ public function setOrderPrice(int $orderPrice) { $this->orderPrice = $orderPrice; } /** * @return string */ public function getRelationOrderNumber(): string { return $this->relationOrderNumber; } /** * @param string $relationOrderNumber */ public function setRelationOrderNumber(string $relationOrderNumber) { $this->relationOrderNumber = $relationOrderNumber; } /** * @return int */ public function getPayType(): int { return $this->payType; } /** * @param int $payType */ public function setPayType(int $payType) { $this->payType = $payType; } }