# OryClient::CORS ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **enabled** | **Boolean** | Whether CORS is enabled for this endpoint. | | | **origins** | **Array<String>** | The allowed origins. Use `*` to allow all origins. A wildcard can also be used in the subdomain, i.e. `https://*.example.com` will allow all origins on all subdomains of `example.com`. | | ## Example ```ruby require 'ory-client' instance = OryClient::CORS.new( enabled: null, origins: null ) ```