gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
20 lines (19 loc) • 446 B
TypeScript
export interface IPaymentIntegrationProvider {
id: string;
name: string;
description: string;
type: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
}
export interface ICreatePaymentIntegrationProvider {
name: string;
description: string;
type: string;
}
export interface IPaymentIntegrationResponse {
providers: IPaymentIntegrationProvider[];
total: number;
traceId: string;
}