getCvsAuthorizations method
Implementation
Future<PaginatedCvsAuthorizations> getCvsAuthorizations({
required String accountId,
String? before,
String? after,
int? perPage,
}) async {
return await invokeMethod<PaginatedCvsAuthorizations>(
(j) => PaginatedCvsAuthorizations.fromJson(j),
'getCvsAuthorizations',
{
'env': this.env.index,
'accessToken': this.accessToken,
'accountId': accountId,
'before': before,
'after': after,
'perPage': perPage,
},
);
}