Parameters
string[]
The list containing the IDs of the TSS requests to be rejected.
string
A detailed explanation for why the TSS requests are being rejected.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
let tssRequestIDs = ["tss_request_id_01"]
let reason = "The TSS request does not meet the required criteria."
do {
try sdkInstance?.rejectTSSRequests(tssRequestIDs: tssRequestIDs, reason: reason)
} catch {
print("Error: \(error)")
}
final List<String> tssRequestIDs = ["tss_request_id_01"];
const String reason = "The TSS request does not meet the required criteria.";
try {
await sdkInstance?.rejectTSSRequests(
tssRequestIDs: tssRequestIDs,
reason: reason
);
} catch (error) {
print("Error: $error");
}
This operation rejects the specified TSS requests and provides reason for the rejection.
public func rejectTSSRequests(tssRequestIDs: [String], reason: String) throws
Future<void> rejectTSSRequests(List<String> tssRequestIDs, String reason) async
let tssRequestIDs = ["tss_request_id_01"]
let reason = "The TSS request does not meet the required criteria."
do {
try sdkInstance?.rejectTSSRequests(tssRequestIDs: tssRequestIDs, reason: reason)
} catch {
print("Error: \(error)")
}
final List<String> tssRequestIDs = ["tss_request_id_01"];
const String reason = "The TSS request does not meet the required criteria.";
try {
await sdkInstance?.rejectTSSRequests(
tssRequestIDs: tssRequestIDs,
reason: reason
);
} catch (error) {
print("Error: $error");
}
Was this page helpful?