Function EmojiApiAxiosParamCreator

  • EmojiApi - axios parameter creator

    Parameters

    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

            チーム名

          • createEmojiBody: CreateEmojiBody
          • Optional options: any = {}

            Override http request option.

          Returns Promise<RequestArgs>

          Summary

          絵文字を登録する

          Throws

    • deleteEmoji: ((teamName, code, options?) => Promise<RequestArgs>)
        • (teamName, code, options?): Promise<RequestArgs>
        • 登録したチーム固有の絵文字を削除します。

          Parameters

          • teamName: string

            チーム名

          • code: string

            絵文字コード

          • Optional options: any = {}

            Override http request option.

          Returns Promise<RequestArgs>

          Summary

          絵文字を削除する

          Throws

    • getEmojis: ((teamName, include?, options?) => Promise<RequestArgs>)
        • (teamName, include?, options?): Promise<RequestArgs>
        • チームで利用可能な絵文字を取得します。URIクエリ文字列を含めない場合、チーム固有の絵文字だけを取得します。

          Parameters

          • teamName: string

            チーム名

          • Optional include: "all"

            `all`を指定すると、チーム固有の絵文字だけではなく、すべての絵文字を返します。

          • Optional options: any = {}

            Override http request option.

          Returns Promise<RequestArgs>

          Summary

          絵文字一覧を取得する

          Throws

    Export

Generated using TypeDoc