mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-02-04 19:06:51 +00:00
31 lines
906 B
Markdown
31 lines
906 B
Markdown
# Header
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | |
|
|
**value** | **str** | The value of the header. Note that this value is obfuscated in the response, even when overwritten. |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.connectors.models.header import Header
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of Header from a JSON string
|
|
header_instance = Header.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(Header.to_json())
|
|
|
|
# convert the object into a dict
|
|
header_dict = header_instance.to_dict()
|
|
# create an instance of Header from a dict
|
|
header_from_dict = Header.from_dict(header_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|