extension = $extension; } /** * @return Extension */ public function getExtension() { return $this->extension; } /** * Required. Restricted to 36 ASCII characters. A random UUID is recommended. * The idempotency key for the request. The ID generation logic is controlled * by the partner. request_id should be the same as on retries of the same * request. A different request_id must be used for a extension of a different * cycle. * * @param string $requestId */ public function setRequestId($requestId) { $this->requestId = $requestId; } /** * @return string */ public function getRequestId() { return $this->requestId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExtendSubscriptionRequest::class, 'Google_Service_PaymentsResellerSubscription_ExtendSubscriptionRequest');