* $paymentsresellersubscriptionService = new Google\Service\PaymentsResellerSubscription(...); * $userSessions = $paymentsresellersubscriptionService->partners_userSessions; * */ class PartnersUserSessions extends \Google\Service\Resource { /** * This API replaces user authorized OAuth consent based APIs (Create, Entitle). * Generates a short-lived token for a user session based on the user intent. * You can use the session token to redirect the user to Google to finish the * signup flow. You can re-generate new session token repeatedly for the same * request if necessary, regardless of the previous tokens being expired or not. * (userSessions.generate) * * @param string $parent Required. The parent, the partner that can resell. * Format: partners/{partner} * @param GoogleCloudPaymentsResellerSubscriptionV1GenerateUserSessionRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudPaymentsResellerSubscriptionV1GenerateUserSessionResponse * @throws \Google\Service\Exception */ public function generate($parent, GoogleCloudPaymentsResellerSubscriptionV1GenerateUserSessionRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('generate', [$params], GoogleCloudPaymentsResellerSubscriptionV1GenerateUserSessionResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PartnersUserSessions::class, 'Google_Service_PaymentsResellerSubscription_Resource_PartnersUserSessions');