# HTTP Options

### Get

Get a single option of the service:

```typescript
crudService.getOption(name : keyof Options) : Options[keyof Options]
```

Get the options of the service:

```typescript
crudService.getOptions() : Options
```

### Set

Set a single option of the service:

```typescript
crudService.setOption(name : keyof Options, value : Options[keyof Options]) : this
```

Set the options of the service:

```typescript
crudService.setOptions(options : Options) : this
```

### Clear

Clear a single option of the service:

```typescript
crudService.clearOption(name : keyof Options) : this
```

Clear the options of the service:

```typescript
crudService.clearOptions() : this
```
