disassociateApplications method
Disassociate applications from wave.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw UninitializedAccountException.
Parameter applicationIDs :
Application IDs list.
Parameter waveID :
Wave ID.
Parameter accountID :
Account ID.
Implementation
Future<void> disassociateApplications({
required List<String> applicationIDs,
required String waveID,
String? accountID,
}) async {
final $payload = <String, dynamic>{
'applicationIDs': applicationIDs,
'waveID': waveID,
if (accountID != null) 'accountID': accountID,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DisassociateApplications',
exceptionFnMap: _exceptionFns,
);
}