UNPKG

channelape-sdk

Version:
20 lines (19 loc) 630 B
import ChannelApeApiError from '../../model/ChannelApeApiError'; /** * @property {number} apiRateLimitPerSecond - for internal purpose only. * @property {number} userRateLimitPerSecond - for internal purpose only. */ export default interface Subscription { active?: boolean; businessId?: string; createdAt?: Date; errors: ChannelApeApiError[]; lastCompletedTaskUsageRecordingTime?: Date; periodEndsAt?: Date; periodStartedAt?: Date; subscriptionId?: string; subscriptionProductHandle?: string; updatedAt?: Date; apiRateLimitPerSecond?: number; userRateLimitPerSecond?: number; }