Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

LegacyDraftReviewAndValidationResponse

Draft validation

Properties

Name Type Description Notes
draft_response LegacyDraftResponse
validation LegacyPolicyValidation

Example

from fireblocks.models.legacy_draft_review_and_validation_response import LegacyDraftReviewAndValidationResponse

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

# convert the object into a dict
legacy_draft_review_and_validation_response_dict = legacy_draft_review_and_validation_response_instance.to_dict()
# create an instance of LegacyDraftReviewAndValidationResponse from a dict
legacy_draft_review_and_validation_response_from_dict = LegacyDraftReviewAndValidationResponse.from_dict(legacy_draft_review_and_validation_response_dict)

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