Add BulkApproveAuthRequestsRequest class for bulk approval of authentication requests

This commit is contained in:
Rui Tome 2024-05-03 15:58:29 +01:00
parent ccad7ef9b6
commit a2df853e6f
No known key found for this signature in database
GPG Key ID: 526239D96A8EC066
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
export class BulkApproveAuthRequestsRequest {
private ids: string[];
constructor(authRequestIds: string[]) {
this.ids = authRequestIds;
}
}