aruba-admin
Version:
A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.
16 lines (15 loc) • 327 B
TypeScript
/**
* ExceptionInfo
* @targetNSAlias `q2`
* @targetNamespace `http://schemas.datacontract.org/2004/07/`
*/
export interface ExceptionInfo {
/** xs:string */
_fullString?: string;
/** xs:string */
_message?: string;
/** xs:string */
_source?: string;
/** xs:string */
_stackTrace?: string;
}