| Name |
Type |
Description |
Notes |
| url |
str |
* @OA\Schema( schema="V1RedirectItem", type="object", required={"url","redirect_url","redirect_http_code","date_timestamp","published","revision_count"}, |
|
| redirect_url |
str |
|
|
| redirect_http_code |
int |
|
|
| date_timestamp |
str |
|
|
| published |
str |
|
|
| revision_count |
int |
|
|
from quantcdn.models.v1_redirect_item import V1RedirectItem
# TODO update the JSON string below
json = "{}"
# create an instance of V1RedirectItem from a JSON string
v1_redirect_item_instance = V1RedirectItem.from_json(json)
# print the JSON string representation of the object
print(V1RedirectItem.to_json())
# convert the object into a dict
v1_redirect_item_dict = v1_redirect_item_instance.to_dict()
# create an instance of V1RedirectItem from a dict
v1_redirect_item_from_dict = V1RedirectItem.from_dict(v1_redirect_item_dict)
[Back to Model list] [Back to API list] [Back to README]