Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 871 Bytes

NftGate.md

File metadata and controls

29 lines (20 loc) · 871 Bytes

NftGate

Properties

Name Type Description Notes
nft_collection NftCollection Must hold an NFT of the given collection to unlock

Example

from pyaudius.models.nft_gate import NftGate

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

# convert the object into a dict
nft_gate_dict = nft_gate_instance.to_dict()
# create an instance of NftGate from a dict
nft_gate_from_dict = NftGate.from_dict(nft_gate_dict)

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