SyntaxFix
Write A Post
Hire A Developer
Questions
placeBets(betList, stakeAmt) is an instance method not a static method. You need to create an instance of CBetfairAPI first:
placeBets(betList, stakeAmt)
CBetfairAPI
MyBetfair api = new MyBetfair(); ArrayList bets = api.placeBets(betList, stakeAmt);