UNPKG

cobinhood-rx

Version:

CobinhoodRx is a rxjs node wrapper for the CobinhoodRx Api.

10 lines (8 loc) 255 B
import { ApiResponseError } from './ApiResponseError'; export class ApiResponse { public success: boolean = false; public message: string = ''; public result: any = undefined; public error: ApiResponseError; public request_id: string = undefined; }