Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

V3controllersPurlResponseMetadata.md

File metadata and controls

31 lines (22 loc) · 1.32 KB

V3controllersPurlResponseMetadata

Properties

Name Type Description Notes
purl_struct PurlPackageURLJSON meta-data about the purl [optional]
timestamp str time of the transaction [optional]
total_documents int number of results found [optional]

Example

from vulncheck_sdk.models.v3controllers_purl_response_metadata import V3controllersPurlResponseMetadata

# TODO update the JSON string below
json = "{}"
# create an instance of V3controllersPurlResponseMetadata from a JSON string
v3controllers_purl_response_metadata_instance = V3controllersPurlResponseMetadata.from_json(json)
# print the JSON string representation of the object
print(V3controllersPurlResponseMetadata.to_json())

# convert the object into a dict
v3controllers_purl_response_metadata_dict = v3controllers_purl_response_metadata_instance.to_dict()
# create an instance of V3controllersPurlResponseMetadata from a dict
v3controllers_purl_response_metadata_from_dict = V3controllersPurlResponseMetadata.from_dict(v3controllers_purl_response_metadata_dict)

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