Function EmojiApiAxiosParamCreator
- EmojiApiAxiosParamCreator(configuration?): {
createEmoji: ((teamName, createEmojiBody, options?) => Promise<RequestArgs>);
deleteEmoji: ((teamName, code, options?) => Promise<RequestArgs>);
getEmojis: ((teamName, include?, options?) => Promise<RequestArgs>);
}
-
Returns {
createEmoji: ((teamName, createEmojiBody, options?) => Promise<RequestArgs>);
deleteEmoji: ((teamName, code, options?) => Promise<RequestArgs>);
getEmojis: ((teamName, include?, options?) => Promise<RequestArgs>);
}
-
createEmoji: ((teamName, createEmojiBody, options?) => Promise<RequestArgs>)
-
- (teamName, createEmojiBody, options?): Promise<RequestArgs>
-
Parameters
-
teamName: string
-
-
Optional
options: any = {}
Returns Promise<RequestArgs>
-
deleteEmoji: ((teamName, code, options?) => Promise<RequestArgs>)
-
- (teamName, code, options?): Promise<RequestArgs>
-
Parameters
-
teamName: string
-
code: string
-
Optional
options: any = {}
Returns Promise<RequestArgs>
-
getEmojis: ((teamName, include?, options?) => Promise<RequestArgs>)
-
- (teamName, include?, options?): Promise<RequestArgs>
-
Parameters
-
teamName: string
-
Optional
include: "all"
-
Optional
options: any = {}
Returns Promise<RequestArgs>
EmojiApi - axios parameter creator