Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 934 Bytes

File metadata and controls

30 lines (21 loc) · 934 Bytes

PreCheck

Some validation settings for creating a transaction.

Properties

Name Type Description Notes
skip_checks List[SkipCheckType] Selection to skip verification. [optional]

Example

from cobo_waas2.models.pre_check import PreCheck

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

# convert the object into a dict
pre_check_dict = pre_check_instance.to_dict()
# create an instance of PreCheck from a dict
pre_check_from_dict = PreCheck.from_dict(pre_check_dict)

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