Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

AssociationOutput

Properties

Name Type Description Notes
id str https://www.w3.org/TR/json-ld/#node-identifiers
type List[str] https://www.w3.org/TR/json-ld/#specifying-the-type
http___rdf_vocabulary_ddialliance_org_xkossource_concept List[object] https://rdf-vocabulary.ddialliance.org/xkos.html#correspondences
http___rdf_vocabulary_ddialliance_org_xkostarget_concept List[object] https://rdf-vocabulary.ddialliance.org/xkos.html#correspondences

Example

from pyst_client.models.association_output import AssociationOutput

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

# convert the object into a dict
association_output_dict = association_output_instance.to_dict()
# create an instance of AssociationOutput from a dict
association_output_from_dict = AssociationOutput.from_dict(association_output_dict)

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