Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster đ
public func approveTSSRequests(tssRequestIDs: [String]) throws
Future<void> approveTSSRequests(List<String> tssRequestIDs) async
let tssRequestIDs = ["tss_request_id_01"]
do {
try sdkInstance?.approveTSSRequests(tssRequestIDs: tssRequestIDs)
} catch {
print("Error: \(error)")
}
final List<String> tssRequestIDs = ["tss_request_id_01"];
try {
await sdkInstance?.approveTSSRequests(tssRequestIDs: tssRequestIDs);
} catch (error) {
print("Error: $error");
}
Parameters
The list containing the IDs of the TSS requests to be approved.
