in src/utils/service.ts [283:309]
getMatchSite(requestParams: GetMatchSiteRequest) {
const params = {
action: 'GetMatchSite',
version: '2024-09-10',
protocol: 'https',
method: 'GET',
authType: 'AK',
bodyType: 'json',
reqBodyType: 'json',
style: 'RPC',
pathname: '/',
toMap: function () {
return this;
},
};
const request = new $OpenApi.OpenApiRequest({
query: {
RecordName: requestParams.recordName,
},
});
const runtime = {
toMap: function () {
return this;
},
};
return this.client.callApi(params, request, runtime);
}