-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathindex.ts
More file actions
42 lines (35 loc) · 1.65 KB
/
Copy pathindex.ts
File metadata and controls
42 lines (35 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2026 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
import { CloudDeviceApi } from "./cloudDeviceApi";
import { EncryptedCloudDeviceApi } from "./encryptedCloudDeviceApi";
import { EncryptionCredentialDetails } from "../../security/clouddevice/encryptionCredentialDetails";
import Service from "../../service";
import Client from "../../client";
export { EncryptedCloudDeviceApi } from "./encryptedCloudDeviceApi";
export default class CloudDeviceAPI extends Service {
public constructor(client: Client) {
super(client);
}
public get CloudDeviceApi() {
return new CloudDeviceApi(this.client);
}
public getEncryptedCloudDeviceApi(encryptionCredentialDetails: EncryptionCredentialDetails) {
return new EncryptedCloudDeviceApi(this.client, encryptionCredentialDetails);
}
}