stampListOauth2Credentials method
Produce a SignedRequest from TListOauth2CredentialsBody by using the client's stamp function.
See also: ListOauth2Credentials.
Implementation
Future<TSignedRequest> stampListOauth2Credentials({
required TListOauth2CredentialsBody input,
}) async {
final fullUrl = '${config.baseUrl}/public/v1/query/list_oauth2_credentials';
final body = jsonEncode(input);
final stamp = await stamper.stamp(body);
return TSignedRequest(
body: body,
stamp: stamp,
url: fullUrl,
);
}