Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 938 Bytes

IssuerAuthority.md

File metadata and controls

31 lines (22 loc) · 938 Bytes

IssuerAuthority

Properties

Name Type Description Notes
name str
title str
signature str

Example

from iblai.models.issuer_authority import IssuerAuthority

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

# convert the object into a dict
issuer_authority_dict = issuer_authority_instance.to_dict()
# create an instance of IssuerAuthority from a dict
issuer_authority_from_dict = IssuerAuthority.from_dict(issuer_authority_dict)

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