Endpoint

Properties

Name Type Description Notes
id int [optional] [readonly]
tags List[str] [optional]
active_finding_count int [optional] [readonly]
protocol str The communication protocol/scheme such as 'http', 'ftp', 'dns', etc. [optional]
userinfo str User info as 'alice', 'bob', etc. [optional]
host str The host name or IP address. It must not include the port number. For example '127.0.0.1', 'localhost', 'yourdomain.com'. [optional]
port int The network port associated with the endpoint. [optional]
path str The location of the resource, it must not start with a '/'. For example endpoint/420/edit [optional]
query str The query string, the question mark should be omitted.For example 'group=4&team=8' [optional]
fragment str The fragment identifier which follows the hash mark. The hash mark should be omitted. For example 'section-13', 'paragraph-2'. [optional]
product int [optional]
endpoint_params List[int] [optional] [readonly]
findings List[int] [optional] [readonly]

Example

from defectdojo_api_generated.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)

[Back to Model list] [Back to API list] [Back to README]