Function CommandApiAxiosParamCreator
- CommandApiAxiosParamCreator(
configuration?: Configuration,
): {
commandControllerCreate: (
commandCreateDTO?: CommandCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerCreateArgument: (
commandArgumentCreateDTO?: CommandArgumentCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerGetExecutions: (
id: string,
success?: any,
eventSearchInputDTO?: EventSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerGetOne: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerRemove: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerRemoveArgument: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerSearch: (
commandSearchInputDTO?: CommandSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerTrigger: (
id: string,
commandTriggerDTO?: CommandTriggerDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerUpdate: (
id: string,
commandUpdateDTO?: CommandUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerUpdateArgument: (
id: string,
commandArgumentUpdateDTO?: CommandArgumentUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
} Parameters
Optional
configuration: Configuration
Returns {
commandControllerCreate: (
commandCreateDTO?: CommandCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerCreateArgument: (
commandArgumentCreateDTO?: CommandArgumentCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerGetExecutions: (
id: string,
success?: any,
eventSearchInputDTO?: EventSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerGetOne: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerRemove: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerRemoveArgument: (
id: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerSearch: (
commandSearchInputDTO?: CommandSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerTrigger: (
id: string,
commandTriggerDTO?: CommandTriggerDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerUpdate: (
id: string,
commandUpdateDTO?: CommandUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
commandControllerUpdateArgument: (
id: string,
commandArgumentUpdateDTO?: CommandArgumentUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
commandControllerCreate: (
commandCreateDTO?: CommandCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerCreateArgument: (
commandArgumentCreateDTO?: CommandArgumentCreateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerGetExecutions: (
id: string,
success?: any,
eventSearchInputDTO?: EventSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
commandControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
commandControllerRemoveArgument: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
commandControllerSearch: (
commandSearchInputDTO?: CommandSearchInputDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerTrigger: (
id: string,
commandTriggerDTO?: CommandTriggerDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerUpdate: (
id: string,
commandUpdateDTO?: CommandUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
commandControllerUpdateArgument: (
id: string,
commandArgumentUpdateDTO?: CommandArgumentUpdateDTO,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
CommandApi - axios parameter creator
Export