Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

V1RedirectListResponse

Properties

Name Type Description Notes
draw int
i_total_records int
i_total_display_records int
aa_data List[V1RedirectItem]

Example

from quantcdn.models.v1_redirect_list_response import V1RedirectListResponse

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

# convert the object into a dict
v1_redirect_list_response_dict = v1_redirect_list_response_instance.to_dict()
# create an instance of V1RedirectListResponse from a dict
v1_redirect_list_response_from_dict = V1RedirectListResponse.from_dict(v1_redirect_list_response_dict)

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