# ProjectCors


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **boolean** | Whether CORS is enabled for this endpoint. | [optional] [default to undefined]
**origins** | **Array&lt;string&gt;** | The allowed origins. Use &#x60;*&#x60; to allow all origins. A wildcard can also be used in the subdomain, i.e. &#x60;https://_*.example.com&#x60; will allow all origins on all subdomains of &#x60;example.com&#x60;. | [optional] [default to undefined]

## Example

```typescript
import { ProjectCors } from '@ory/client';

const instance: ProjectCors = {
    enabled,
    origins,
};
```

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