| Name | Type | Description | Notes |
|---|---|---|---|
| headers | List[HeaderItems] | [optional] | |
| hmac_signature | HMACSignature | [optional] | |
| method | str | [optional] | |
| url | str | [optional] |
from launchdarkly_api.models.endpoint import Endpoint
# TODO update the JSON string below
json = "{}"
# create an instance of Endpoint from a JSON string
endpoint_instance = Endpoint.from_json(json)
# print the JSON string representation of the object
print(Endpoint.to_json())
# convert the object into a dict
endpoint_dict = endpoint_instance.to_dict()
# create an instance of Endpoint from a dict
endpoint_from_dict = Endpoint.from_dict(endpoint_dict)