Interface ValidateConsolidationResponseDto

interface ValidateConsolidationResponseDto {
    errors?: ValidationErrorDto[];
    targetValidator?: TargetValidatorDto;
    valid: boolean;
}

Properties

List of validation errors (only present when valid is false)

targetValidator?: TargetValidatorDto

Target validator details including projected balance after consolidation

valid: boolean

Whether the consolidation request is valid and can be executed

Example

true