Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 770 Bytes

File metadata and controls

24 lines (17 loc) · 770 Bytes

ValidationFailedErrorRep

Properties

Name Type Description Notes
code string Specific error code encountered [default to undefined]
message string Description of the error [default to undefined]
errors Array<FailureReasonRep> List of validation errors [default to undefined]

Example

import { ValidationFailedErrorRep } from 'launchdarkly-api-typescript';

const instance: ValidationFailedErrorRep = {
    code,
    message,
    errors,
};

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