Function ApiKeyApiAxiosParamCreator
- ApiKeyApiAxiosParamCreator(
configuration?: Configuration,
): {
createKey: (
app: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
revokeKey: (
key: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
} Returns {
createKey: (
app: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
revokeKey: (
key: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
createKey: (app: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
getKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
revokeKey: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
ApiKeyApi - axios parameter creator
Export