Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 713 Bytes

File metadata and controls

24 lines (17 loc) · 713 Bytes

ErrorObject

Properties

Name Type Description Notes
type string A concise summary of the error used for categorization. [default to undefined]
description string A detailed explanation of the error. [default to undefined]
source ErrorSource [default to undefined]

Example

import { ErrorObject } from 'bandwidth-sdk';

const instance: ErrorObject = {
    type,
    description,
    source,
};

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