You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicates whether the LayerZero channel configuration is valid.
errors
List[str]
List of errors found during validation. An empty array indicates no errors.
Example
fromfireblocks.models.validate_layer_zero_channel_responseimportValidateLayerZeroChannelResponse# TODO update the JSON string belowjson="{}"# create an instance of ValidateLayerZeroChannelResponse from a JSON stringvalidate_layer_zero_channel_response_instance=ValidateLayerZeroChannelResponse.from_json(json)
# print the JSON string representation of the objectprint(ValidateLayerZeroChannelResponse.to_json())
# convert the object into a dictvalidate_layer_zero_channel_response_dict=validate_layer_zero_channel_response_instance.to_dict()
# create an instance of ValidateLayerZeroChannelResponse from a dictvalidate_layer_zero_channel_response_from_dict=ValidateLayerZeroChannelResponse.from_dict(validate_layer_zero_channel_response_dict)