You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list of domains for which to get verification details for.
Example
fromhostinger_api.models.domain_access_verifier_v2_verifications_list_requestimportDomainAccessVerifierV2VerificationsListRequest# TODO update the JSON string belowjson="{}"# create an instance of DomainAccessVerifierV2VerificationsListRequest from a JSON stringdomain_access_verifier_v2_verifications_list_request_instance=DomainAccessVerifierV2VerificationsListRequest.from_json(json)
# print the JSON string representation of the objectprint(DomainAccessVerifierV2VerificationsListRequest.to_json())
# convert the object into a dictdomain_access_verifier_v2_verifications_list_request_dict=domain_access_verifier_v2_verifications_list_request_instance.to_dict()
# create an instance of DomainAccessVerifierV2VerificationsListRequest from a dictdomain_access_verifier_v2_verifications_list_request_from_dict=DomainAccessVerifierV2VerificationsListRequest.from_dict(domain_access_verifier_v2_verifications_list_request_dict)