node-calendly
Version:
Node module to access calendly api.
17 lines • 548 B
TypeScript
/******************************************
* Author : Dr. Sebastian Herden
* Created On : Fri Sep 16 2022
* File : CalendlyCancellation.ts
*******************************************/
/**
* Provides data pertaining to the cancellation of the Event
* @export
* @interface CalendlyCancellation
* @see https://developer.calendly.com/api-docs/77497aba237ee-cancellation
*/
export declare type Cancellation = {
canceled_by: string;
reason: string;
canceler_type: 'invitee' | 'host';
};
//# sourceMappingURL=Cancellation.d.ts.map