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

AssociationInput

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[Node] https://rdf-vocabulary.ddialliance.org/xkos.html#correspondences
http___rdf_vocabulary_ddialliance_org_xkostarget_concept List[Node] https://rdf-vocabulary.ddialliance.org/xkos.html#correspondences

Example

from pyst_client.models.association_input import AssociationInput

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

# convert the object into a dict
association_input_dict = association_input_instance.to_dict()
# create an instance of AssociationInput from a dict
association_input_from_dict = AssociationInput.from_dict(association_input_dict)

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