@apideck/node
Version:
Apideck Node.js SDK
23 lines (22 loc) • 752 B
TypeScript
/**
* Apideck service provider associated with event.
* @export
* @interface WebhookEventLogService
*/
export interface WebhookEventLogService {
/**
* Apideck service provider id.
* @type {string}
* @memberof WebhookEventLogService
*/
id: string;
/**
* Apideck service provider name.
* @type {string}
* @memberof WebhookEventLogService
*/
name: string;
}
export declare function WebhookEventLogServiceFromJSON(json: any): WebhookEventLogService;
export declare function WebhookEventLogServiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookEventLogService;
export declare function WebhookEventLogServiceToJSON(value?: WebhookEventLogService | null): any;