# BaseTemplateConfiguration

Represents a base template

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**activated** | **boolean** | The template activation state. If empty, default is true. | [optional] [default to undefined]
**body** | **string** | The template body | [default to undefined]
**event** | **string** | Represents an event of a base template configuration. | [default to undefined]
**filterConstraints** | [**Array&lt;CustomFilterConstraint&gt;**](CustomFilterConstraint.md) | The template filter constraints. | [optional] [default to undefined]
**filtersLinkingOperator** | **string** | Represents an expression operator of a base template configuration. | [optional] [default to undefined]
**id** | **string** | The template ID, which must be unique. | [optional] [default to undefined]
**name** | **string** | The template name, which must be unique | [default to undefined]
**subscriptionOption** | **string** | Represents a subscription option. | [optional] [default to undefined]
**target** | **string** | Represents a target type of a base template configuration. | [default to undefined]
**trigger** | **string** | Represents a template trigger type of a base template configuration. | [optional] [default to undefined]
**triggerDays** | **number** | The template trigger days period. If empty, default is 0 | [optional] [default to undefined]
**type** | **string** | Represents a template type. | [default to undefined]

## Example

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

const instance: BaseTemplateConfiguration = {
    activated,
    body,
    event,
    filterConstraints,
    filtersLinkingOperator,
    id,
    name,
    subscriptionOption,
    target,
    trigger,
    triggerDays,
    type,
};
```

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