ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
14 lines (13 loc) • 406 B
TypeScript
import { ApiRole } from './ApiRole';
import { IntegrationEventType } from './IntegrationEventType';
export interface IntegrationEvent {
ElevatedRoles?: ApiRole[];
ID?: string;
ConfigData?: any;
EventType?: IntegrationEventType;
CustomImplementationUrl: string;
CustomAuthHeaderName?: string;
CustomAuthHeaderValue?: string;
Name: string;
HashKey: string;
}