@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
8 lines (7 loc) • 312 B
TypeScript
import Service from "../../../service";
import Resource from "../../resource";
type Endpoints = "/getOnboardingUrl" | "/getPciQuestionnaireUrl";
declare class PlatformsHostedOnboardingPage extends Resource {
constructor(service: Service, endpoint: Endpoints);
}
export default PlatformsHostedOnboardingPage;