Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

SpamOwnershipResponse.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

SpamOwnershipResponse

Properties

Name Type Description Notes
result bool Token spam result
source str Source of Token's Spam status value

Example

from fireblocks.models.spam_ownership_response import SpamOwnershipResponse

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

# convert the object into a dict
spam_ownership_response_dict = spam_ownership_response_instance.to_dict()
# create an instance of SpamOwnershipResponse from a dict
spam_ownership_response_from_dict = SpamOwnershipResponse.from_dict(spam_ownership_response_dict)

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