getApplication method
Retrieves information about an application.
Parameter applicationId :
The unique identifier of the application to retrieve.
Implementation
Future<GetApplicationResponse> getApplication({
required String applicationId,
}) async {
final $payload = <String, dynamic>{
'applicationId': applicationId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/GetApplication',
exceptionFnMap: _exceptionFns,
);
return GetApplicationResponse.fromJson(response);
}