Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

V1UrlMetaRequest

Properties

Name Type Description Notes
quant_url List[str]

Example

from quantcdn.models.v1_url_meta_request import V1UrlMetaRequest

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

# convert the object into a dict
v1_url_meta_request_dict = v1_url_meta_request_instance.to_dict()
# create an instance of V1UrlMetaRequest from a dict
v1_url_meta_request_from_dict = V1UrlMetaRequest.from_dict(v1_url_meta_request_dict)

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