graycoreio/daffodil

View on GitHub
libs/driver/hubspot/src/models/hubspot-response.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface HubspotError {
  errorType: string;
  message: string;
}

export interface HubspotResponse {
  redirectUri?: string;
  inlineMessage: string;
  errors: HubspotError[];
}