V2reportsNameAndAuthorityNote

December 6, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
namestr[optional]
notestr[optional]
note_classifierV2reportsNameAndAuthorityNoteClassifier[optional] [default to V2reportsNameAndAuthorityNoteClassifier.NO_AUTHORITY_CLASSIFIER]

Example

from ncbi.datasets.openapi.models.v2reports_name_and_authority_note import V2reportsNameAndAuthorityNote

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

# convert the object into a dict
v2reports_name_and_authority_note_dict = v2reports_name_and_authority_note_instance.to_dict()
# create an instance of V2reportsNameAndAuthorityNote from a dict
v2reports_name_and_authority_note_from_dict = V2reportsNameAndAuthorityNote.from_dict(v2reports_name_and_authority_note_dict)

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