HTTP Options

Get

Get a single option of the service:
crudService.getOption(name : keyof Options) : Options[keyof Options]
Get the options of the service:
crudService.getOptions() : Options

Set

Set a single option of the service:
crudService.setOption(name : keyof Options, value : Options[keyof Options]) : this
Set the options of the service:
crudService.setOptions(options : Options) : this

Clear

Clear a single option of the service:
crudService.clearOption(name : keyof Options) : this
Clear the options of the service:
crudService.clearOptions() : this