File: /var/www/api.javaapp.co.uk/node_modules/stripe/types/ThinEvent.d.ts
// This is a manually maintained file
declare module 'stripe' {
namespace Stripe {
namespace Event {
/**
* Object containing the reference to API resource relevant to the event.
*/
interface RelatedObject {
/**
* Unique identifier for the object relevant to the event.
*/
id: string;
/**
* Type of the object relevant to the event.
*/
type: string;
/**
* URL to retrieve the resource.
*/
url: string;
}
}
/**
* The Event object as recieved from StripeClient.parseThinEvent.
*/
interface ThinEvent extends V2.EventBase {
/**
* Object containing the reference to API resource relevant to the event.
*/
related_object: Event.RelatedObject | null;
}
}
}