# WebhookTemplateConfiguration

Represents a webhook template.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**authorization** | **string** | Model representation of the authorization type. | [optional] [default to undefined]
**contentType** | **string** | Model representation of the content type. | [default to undefined]
**headers** | [**Array&lt;TemplateRequestHeader&gt;**](TemplateRequestHeader.md) | The template\&#39;s message headers. | [optional] [default to undefined]
**password** | **string** | If authorization is not default, the password used to authenticate. | [optional] [default to undefined]
**requestType** | **string** | Model representation of the HTTP method contained by the &#x60;requestType&#x60; field of the template. | [default to undefined]
**url** | **string** | The template url, which must be not null. | [default to undefined]
**username** | **string** | If authorization is not default, the username used to authenticate. | [optional] [default to undefined]

## Example

```typescript
import { WebhookTemplateConfiguration } from './api';

const instance: WebhookTemplateConfiguration = {
    authorization,
    contentType,
    headers,
    password,
    requestType,
    url,
    username,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
