Function AssetsApiAxiosParamCreator
AssetsApiAxiosParamCreator( configuration?: Configuration,): { assetsCreate: ( file?: File, options?: RawAxiosRequestConfig, ) => Promise<RequestArgs>; assetsDestroy: ( uuid: string, options?: RawAxiosRequestConfig, ) => Promise<RequestArgs>; assetsRetrieve: ( uuid: string, options?: RawAxiosRequestConfig, ) => Promise<RequestArgs>;} Returns {
assetsCreate: (
file?: File,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
assetsDestroy: (
uuid: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
assetsRetrieve: (
uuid: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
assetsCreate: (file?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
assetsDestroy: (uuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
assetsRetrieve: (uuid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
AssetsApi - axios parameter creator
Export