# UiNodeScriptAttributes


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**async** | **boolean** | The script async type | [default to undefined]
**crossorigin** | **string** | The script cross origin policy | [default to undefined]
**id** | **string** | A unique identifier | [default to undefined]
**integrity** | **string** | The script\&#39;s integrity hash | [default to undefined]
**node_type** | **string** | NodeType represents this node\&#39;s types. It is a mirror of &#x60;node.type&#x60; and is primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \&quot;script\&quot;. text Text input Input img Image a Anchor script Script div Division | [default to undefined]
**nonce** | **string** | Nonce for CSP  A nonce you may want to use to improve your Content Security Policy. You do not have to use this value but if you want to improve your CSP policies you may use it. You can also choose to use your own nonce value! | [default to undefined]
**referrerpolicy** | **string** | The script referrer policy | [default to undefined]
**src** | **string** | The script source | [default to undefined]
**type** | **string** | The script MIME type | [default to undefined]

## Example

```typescript
import { UiNodeScriptAttributes } from '@ory/kratos-client';

const instance: UiNodeScriptAttributes = {
    async,
    crossorigin,
    id,
    integrity,
    node_type,
    nonce,
    referrerpolicy,
    src,
    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)
