Function TeamApiAxiosParamCreator
 
- TeamApiAxiosParamCreator(configuration?): { 
    getTeam: ((teamName, options?) => Promise<RequestArgs>); 
    getTeamStats: ((teamName, options?) => Promise<RequestArgs>); 
    getTeams: ((page?, perPage?, options?) => Promise<RequestArgs>); 
} 
- 
Returns { 
    getTeam: ((teamName, options?) => Promise<RequestArgs>); 
    getTeamStats: ((teamName, options?) => Promise<RequestArgs>); 
    getTeams: ((page?, perPage?, options?) => Promise<RequestArgs>); 
}
- 
getTeam: ((teamName, options?) => Promise<RequestArgs>)
- 
- (teamName, options?): Promise<RequestArgs>
 
- 
Parameters
- 
teamName: string
 
- 
Optional options: any = {}
 
 
Returns Promise<RequestArgs>
 
 
 
- 
getTeamStats: ((teamName, options?) => Promise<RequestArgs>)
- 
- (teamName, options?): Promise<RequestArgs>
 
- 
Parameters
- 
teamName: string
 
- 
Optional options: any = {}
 
 
Returns Promise<RequestArgs>
 
 
 
- 
getTeams: ((page?, perPage?, options?) => Promise<RequestArgs>)
- 
- (page?, perPage?, options?): Promise<RequestArgs>
 
- 
Parameters
- 
Optional page: number
 
- 
Optional perPage: number
 
- 
Optional options: any = {}
 
 
Returns Promise<RequestArgs>
 
 
 
 
 
 
 
TeamApi - axios parameter creator