UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

25 lines (24 loc) 504 B
/** * Subscription */ import { SubscriptionType } from './SubscriptionType'; export interface Subscription { /** * Type of the subscription. * @type {string} * @memberof Subscription */ type: SubscriptionType; /** * ID of the subscription. * @type {string} * @memberof Subscription */ id: string; /** * Additional attributes based on the subscription type. * @type {object} * @memberof Subscription */ attr: object; }