Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

OutputXlinkValid

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
validity str The xlink validity time of the specified address.

Example

from qan.qan.output_xlink_valid import OutputXlinkValid

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

# convert the object into a dict
output_xlink_valid_dict = output_xlink_valid_instance.to_dict()
# create an instance of OutputXlinkValid from a dict
output_xlink_valid_from_dict = OutputXlinkValid.from_dict(output_xlink_valid_dict)

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